Linux Audio

Check our new training course

In-person Linux kernel drivers training

Jun 16-20, 2025
Register
Loading...
v6.8
 1// SPDX-License-Identifier: LGPL-2.1
 2
 3#include "namespaces.h"
 4#include <unistd.h>
 5#include <sys/syscall.h>
 6
 7int setns(int fd, int nstype)
 8{
 9	return syscall(__NR_setns, fd, nstype);
10}
v6.9.4
 1// SPDX-License-Identifier: LGPL-2.1
 2
 3#include "namespaces.h"
 4#include <unistd.h>
 5#include <sys/syscall.h>
 6
 7int setns(int fd, int nstype)
 8{
 9	return syscall(__NR_setns, fd, nstype);
10}