]> Git Repo - J-linux.git/blob - tools/perf/util/setns.c
Merge tag 'amd-drm-next-6.5-2023-06-09' of https://gitlab.freedesktop.org/agd5f/linux...
[J-linux.git] / tools / perf / util / setns.c
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 }
This page took 0.028942 seconds and 4 git commands to generate.