Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
at v4.9-rc1 12 lines 196 B view raw
1#ifndef _LINUX_NS_COMMON_H 2#define _LINUX_NS_COMMON_H 3 4struct proc_ns_operations; 5 6struct ns_common { 7 atomic_long_t stashed; 8 const struct proc_ns_operations *ops; 9 unsigned int inum; 10}; 11 12#endif