mirror of git://git.musl-libc.org/musl
add linux-specific unshare syscall wrapper
This commit is contained in:
parent
8b71121910
commit
50da5c264f
|
@ -56,6 +56,7 @@ int sched_yield(void);
|
||||||
#define CLONE_NEWNET 0x40000000
|
#define CLONE_NEWNET 0x40000000
|
||||||
#define CLONE_IO 0x80000000
|
#define CLONE_IO 0x80000000
|
||||||
int clone (int (*)(void *), void *, int, void *, ...);
|
int clone (int (*)(void *), void *, int, void *, ...);
|
||||||
|
int unshare(int);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
|
|
|
@ -0,0 +1,8 @@
|
||||||
|
#define _GNU_SOURCE
|
||||||
|
#include <sched.h>
|
||||||
|
#include "syscall.h"
|
||||||
|
|
||||||
|
int unshare(int flags)
|
||||||
|
{
|
||||||
|
return syscall(SYS_unshare, flags);
|
||||||
|
}
|
Loading…
Reference in New Issue