projects
/
releases.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
GNU Linux-libre 4.19.211-gnu1
[releases.git]
/
tools
/
perf
/
util
/
setns.c
1
#include "util.h"
2
#include <unistd.h>
3
#include <sys/syscall.h>
4
5
int setns(int fd, int nstype)
6
{
7
return syscall(__NR_setns, fd, nstype);
8
}