mirror of
https://github.com/checkpoint-restore/criu
synced 2025-08-27 12:28:14 +00:00
This is the final patch in the series. It does a bunch of renames and fixes headers respectively. Signed-off-by: Cyrill Gorcunov <gorcunov@openvz.org> Signed-off-by: Andrei Vagin <avagin@virtuozzo.com>
18 lines
466 B
C
18 lines
466 B
C
#ifndef __COMPEL_INFECT_RPC_H__
|
|
#define __COMPEL_INFECT_RPC_H__
|
|
|
|
#include <sys/socket.h>
|
|
#include <sys/un.h>
|
|
#include <stdint.h>
|
|
|
|
struct parasite_ctl;
|
|
extern int compel_rpc_sync(unsigned int cmd, struct parasite_ctl *ctl);
|
|
extern int compel_rpc_call(unsigned int cmd, struct parasite_ctl *ctl);
|
|
extern int compel_rpc_call_sync(unsigned int cmd, struct parasite_ctl *ctl);
|
|
extern int compel_rpc_sock(struct parasite_ctl *ctl);
|
|
|
|
#define PARASITE_USER_CMDS 64
|
|
|
|
|
|
#endif
|