mirror of
https://github.com/checkpoint-restore/criu.git
synced 2026-07-21 01:06:58 +00:00
We have generic do_pb_show() call and tons of show_foo routines, that just call one with proper args. Compact the code by putting the args into array and calling the do_pb_show() in one place. Signed-off-by: Pavel Emelyanov <xemul@parallels.com>
11 lines
239 B
C
11 lines
239 B
C
#ifndef __CR_IPC_NS_H__
|
|
#define __CR_IPC_NS_H__
|
|
|
|
#include "crtools.h"
|
|
|
|
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__ */
|