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