mirror of
https://github.com/checkpoint-restore/criu.git
synced 2026-07-20 16:51:37 +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
218 B
C
11 lines
218 B
C
#ifndef __CR_UTS_NS_H__
|
|
#define __CR_UTS_NS_H__
|
|
|
|
#include "crtools.h"
|
|
|
|
int dump_uts_ns(int ns_pid, struct cr_fdset *fdset);
|
|
int prepare_utsns(int pid);
|
|
|
|
extern struct ns_desc uts_ns_desc;
|
|
|
|
#endif /* __CR_UTS_NS_H__ */
|