mirror of
https://github.com/checkpoint-restore/criu.git
synced 2026-07-19 01:26:22 +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>
11 lines
238 B
C
11 lines
238 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);
|
|
struct cr_options;
|
|
void show_utsns(int fd, struct cr_options *);
|
|
int prepare_utsns(int pid);
|
|
|
|
#endif /* CR_UTS_NS_H_ */
|