Commit c459e417 authored by Cyrill Gorcunov's avatar Cyrill Gorcunov Committed by Pavel Emelyanov

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: 's avatarCyrill Gorcunov <gorcunov@openvz.org>
Signed-off-by: 's avatarPavel Emelyanov <xemul@parallels.com>
parent eaea8f25
...@@ -4,23 +4,23 @@ ...@@ -4,23 +4,23 @@
#include "crtools.h" #include "crtools.h"
#include "pstree.h" #include "pstree.h"
int dump_namespaces(struct pid *pid, unsigned int ns_flags);
int prepare_namespace(int pid, unsigned long clone_flags);
struct cr_options; struct cr_options;
int try_show_namespaces(int pid, struct cr_options *);
struct ns_desc { struct ns_desc {
unsigned int cflag; unsigned int cflag;
char *str; 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 switch_ns(int pid, struct ns_desc *nd, int *rst);
int restore_ns(int rst, struct ns_desc *nd); int restore_ns(int rst, struct ns_desc *nd);
extern struct ns_desc pid_ns_desc;
struct pstree_item;
int dump_task_ns_ids(struct pstree_item *); int dump_task_ns_ids(struct pstree_item *);
extern unsigned long current_ns_mask;
#endif /* __CR_NS_H__ */ #endif /* __CR_NS_H__ */
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment