mirror of
https://github.com/checkpoint-restore/criu.git
synced 2026-07-23 10:09:57 +00:00
We are going to replace pid on id in names of image files. The id is uniq for each namespace, so it's more convient, if image files are opened per namespace. Signed-off-by: Andrey Vagin <avagin@openvz.org> Signed-off-by: Pavel Emelyanov <xemul@parallels.com>
11 lines
220 B
C
11 lines
220 B
C
#ifndef __CR_IPC_NS_H__
|
|
#define __CR_IPC_NS_H__
|
|
|
|
#include "crtools.h"
|
|
|
|
extern int dump_ipc_ns(int ns_pid, int ns_id);
|
|
extern int prepare_ipc_ns(int pid);
|
|
|
|
extern struct ns_desc ipc_ns_desc;
|
|
|
|
#endif /* __CR_IPC_NS_H__ */
|