mirror of
https://github.com/checkpoint-restore/criu.git
synced 2026-07-18 17:14:28 +00:00
Currently criu built with criu/pie-util-fd (which is a symlink to criu/pie/util-fd) with same flags as we use in general compel infection code. Moreover the criu link with libcompel.a, so we get a problem where send_fds/recv_fds are multiple defined. Lets rather unweave this mess: - drop criu/pie-util-fd.c completely - move send_fd/recv_fd inliners into scm.h Signed-off-by: Cyrill Gorcunov <gorcunov@openvz.org> Signed-off-by: Pavel Emelyanov <xemul@virtuozzo.com> Signed-off-by: Andrei Vagin <avagin@virtuozzo.com>
12 lines
201 B
C
12 lines
201 B
C
/*
|
|
* plugin-fds.h -- API for fds compel plugin
|
|
*/
|
|
|
|
#ifndef __COMPEL_PLUGIN_FDS_H__
|
|
#define __COMPEL_PLUGIN_FDS_H__
|
|
|
|
#include <sys/un.h>
|
|
|
|
#include "common/scm.h"
|
|
|
|
#endif /* __COMPEL_PLUGIN_FDS_H__ */
|