setns.h 353 字节
Newer Older
M
m00302376 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
// SPDX-License-Identifier: GPL-2.0-or-later
/*
  Copyright (c) 2020 Cyril Hrubis <chrubis@suse.cz>
 */

#ifndef LAPI_SETNS_H__
#define LAPI_SETNS_H__

#include "config.h"
#include "lapi/syscalls.h"
#include <sched.h>

#ifndef HAVE_SETNS
int setns(int fd, int nstype)
{
	return tst_syscall(__NR_setns, fd, nstype);
}
#endif

#endif /* LAPI_SETNS_H__ */