lineage_kernel_xcoverpro/tools/perf/util/setns.c

9 lines
139 B
C
Raw Permalink Normal View History

2023-06-18 22:53:49 +00:00
#include "util.h"
#include <unistd.h>
#include <sys/syscall.h>
int setns(int fd, int nstype)
{
return syscall(__NR_setns, fd, nstype);
}