2
0
mirror of https://github.com/checkpoint-restore/criu synced 2025-09-05 00:35:23 +00:00
Files
criu/include/namespaces.h
Cyrill Gorcunov c459e417f3 ns: Beautify namespaces.h
I'll need to modify this header so before anything
else lets beautify it

 - drop struct pstree_item declaration it's already in pstree.h
 - move struct cr_options to top
 - align members of struct ns_desc
 - move externs to top
 - add argument name to try_show_namespaces

Signed-off-by: Cyrill Gorcunov <gorcunov@openvz.org>
Signed-off-by: Pavel Emelyanov <xemul@parallels.com>
2013-05-15 00:37:44 +04:00

27 lines
579 B
C

#ifndef __CR_NS_H__
#define __CR_NS_H__
#include "crtools.h"
#include "pstree.h"
struct cr_options;
struct ns_desc {
unsigned int cflag;
char *str;
};
extern struct ns_desc pid_ns_desc;
extern unsigned long current_ns_mask;
int dump_namespaces(struct pid *pid, unsigned int ns_flags);
int prepare_namespace(int pid, unsigned long clone_flags);
int try_show_namespaces(int pid, struct cr_options *o);
int switch_ns(int pid, struct ns_desc *nd, int *rst);
int restore_ns(int rst, struct ns_desc *nd);
int dump_task_ns_ids(struct pstree_item *);
#endif /* __CR_NS_H__ */