xref: /linux/tools/perf/util/setns.c (revision 26fbb4c8c7c3ee9a4c3b4de555a8587b5a19154e)
1 // SPDX-License-Identifier: LGPL-2.1
2 
3 #include "namespaces.h"
4 #include <unistd.h>
5 #include <sys/syscall.h>
6 
7 int setns(int fd, int nstype)
8 {
9 	return syscall(__NR_setns, fd, nstype);
10 }
11