Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v4.16 8 lines 139 B view raw
1#include "util.h" 2#include <unistd.h> 3#include <sys/syscall.h> 4 5int setns(int fd, int nstype) 6{ 7 return syscall(__NR_setns, fd, nstype); 8}