nt9856x/BSP/linux-kernel/tools/perf/util/setns.c
2023-03-28 15:07:53 +08:00

9 lines
139 B
C

#include "util.h"
#include <unistd.h>
#include <sys/syscall.h>
int setns(int fd, int nstype)
{
return syscall(__NR_setns, fd, nstype);
}