setns.c 135 B

12345678
  1. #define _GNU_SOURCE
  2. #include <sched.h>
  3. #include "syscall.h"
  4. int setns(int fd, int nstype)
  5. {
  6. return syscall(SYS_setns, fd, nstype);
  7. }