]> Git Repo - linux.git/blob - tools/perf/util/setns.c
dma-mapping: implement dma_map_single_attrs using dma_map_page_attrs
[linux.git] / tools / perf / util / setns.c
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 }
This page took 0.033135 seconds and 4 git commands to generate.