mirror of
https://github.com/checkpoint-restore/criu.git
synced 2026-07-18 09:05:10 +00:00
These are structs that (now) tie together ns string and the CLONE_ flag. It's nice to have one (some code becomes simpler) and will help us with auto-namespaces detection. Signed-off-by: Pavel Emelyanov <xemul@parallels.com>
13 lines
283 B
C
13 lines
283 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);
|
|
|
|
extern struct ns_desc uts_ns_desc;
|
|
|
|
#endif /* __CR_UTS_NS_H__ */
|