Gitiles
Code Review
Sign In
LeafOS
/
LeafOS-Devices
/
android_kernel_samsung_gta4xl
/
ea71b10a3d18e5589f44b836a83003a6e741d6bb
/
.
/
tools
/
perf
/
util
/
setns.c
blob: ce8fc290fce8783f6e3a24beac8e3f0dcd7d2a79 [
file
] [
log
] [
blame
]
#include
"util.h"
#include
<unistd.h>
#include
<sys/syscall.h>
int
setns
(
int
fd
,
int
nstype
)
{
return
syscall
(
__NR_setns
,
fd
,
nstype
);
}