Files
chromebox_10th_audio_driver/kernel-src/linux-hwe-6.17-6.17.0/tools/perf/util/setns.c
2026-04-04 07:45:01 +00:00

11 lines
183 B
C

// SPDX-License-Identifier: LGPL-2.1
#include "namespaces.h"
#include <unistd.h>
#include <sys/syscall.h>
int setns(int fd, int nstype)
{
return syscall(__NR_setns, fd, nstype);
}