repo.or.cz
/
linux
/
fpc-iii.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Linux 5.1.15
[linux/fpc-iii.git]
/
tools
/
perf
/
util
/
setns.c
blob
ce8fc290fce8783f6e3a24beac8e3f0dcd7d2a79
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
}