mirror of
https://github.com/checkpoint-restore/criu.git
synced 2026-07-18 09:05:10 +00:00
Each fdset item now has the callback which will show a contents of a magic-described image file. Per-task and global show code is reworked to walk the respective fdsets and calling ->show on each file. Signed-off-by: Pavel Emelyanov <xemul@parallels.com>
14 lines
427 B
C
14 lines
427 B
C
#ifndef CR_IPC_NS_H_
|
|
#define CR_IPC_NS_H_
|
|
|
|
#include "crtools.h"
|
|
|
|
struct cr_options;
|
|
extern void show_ipc_var(int fd, struct cr_options *);
|
|
extern void show_ipc_shm(int fd, struct cr_options *);
|
|
extern void show_ipc_msg(int fd, struct cr_options *);
|
|
extern void show_ipc_sem(int fd, struct cr_options *);
|
|
extern int dump_ipc_ns(int ns_pid, struct cr_fdset *fdset);
|
|
extern int prepare_ipc_ns(int pid);
|
|
|
|
#endif /* CR_IPC_NS_H_ */
|