xref: /linux/tools/perf/util/setns.c (revision ec8f24b7faaf3d4799a7c3f4c1b87f6b02778ad1)
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 }
9