mirror of
https://github.com/checkpoint-restore/criu.git
synced 2026-07-21 01:06:58 +00:00
We have global instance of them, that's enough. Signed-off-by: Pavel Emelyanov <xemul@parallels.com>
15 lines
375 B
C
15 lines
375 B
C
#ifndef __CR_IPC_NS_H__
|
|
#define __CR_IPC_NS_H__
|
|
|
|
#include "crtools.h"
|
|
|
|
extern void show_ipc_var(int fd);
|
|
extern void show_ipc_shm(int fd);
|
|
extern void show_ipc_msg(int fd);
|
|
extern void show_ipc_sem(int fd);
|
|
extern int dump_ipc_ns(int ns_pid, const struct cr_fdset *fdset);
|
|
extern int prepare_ipc_ns(int pid);
|
|
|
|
extern struct ns_desc ipc_ns_desc;
|
|
|
|
#endif /* __CR_IPC_NS_H__ */
|