am b7c6991c
: Merge "Update MS_ mount flags, define unshare() syscall."
* commit 'b7c6991c9af3882bd13cbf6bc42da85c884aa5f5': Update MS_ mount flags, define unshare() syscall.
This commit is contained in:
commit
16a0cbaa83
@ -71,6 +71,7 @@ extern int sched_rr_get_interval(pid_t pid, struct timespec *tp);
|
|||||||
|
|
||||||
#ifdef _GNU_SOURCE
|
#ifdef _GNU_SOURCE
|
||||||
extern int clone(int (*fn)(void *), void *child_stack, int flags, void* arg, ...);
|
extern int clone(int (*fn)(void *), void *child_stack, int flags, void* arg, ...);
|
||||||
|
extern int unshare(int);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* Support for cpu thread affinity */
|
/* Support for cpu thread affinity */
|
||||||
|
@ -51,7 +51,10 @@ __BEGIN_DECLS
|
|||||||
#define MS_REC 16384
|
#define MS_REC 16384
|
||||||
#define MS_VERBOSE 32768
|
#define MS_VERBOSE 32768
|
||||||
#define MS_POSIXACL (1<<16) /* VFS does not apply the umask */
|
#define MS_POSIXACL (1<<16) /* VFS does not apply the umask */
|
||||||
#define MS_ONE_SECOND (1<<17) /* fs has 1 sec a/m/ctime resolution */
|
#define MS_UNBINDABLE (1<<17) /* change to unbindable */
|
||||||
|
#define MS_PRIVATE (1<<18) /* change to private */
|
||||||
|
#define MS_SLAVE (1<<19) /* change to slave */
|
||||||
|
#define MS_SHARED (1<<20) /* change to shared */
|
||||||
#define MS_ACTIVE (1<<30)
|
#define MS_ACTIVE (1<<30)
|
||||||
#define MS_NOUSER (1<<31)
|
#define MS_NOUSER (1<<31)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user