aboutsummaryrefslogtreecommitdiff
path: root/sysdeps
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2008-03-24 16:03:48 +0000
committerUlrich Drepper <drepper@redhat.com>2008-03-24 16:03:48 +0000
commit0ab7632d38f52e2a540b3550f69ec0ed293c0cdb (patch)
treec7637a8ddbf2c9a5c4ece26d6368a000f9ab2691 /sysdeps
parent85ac24138b45f95392aac3bc5331652abc7ce858 (diff)
downloadglibc-0ab7632d38f52e2a540b3550f69ec0ed293c0cdb.tar
glibc-0ab7632d38f52e2a540b3550f69ec0ed293c0cdb.tar.gz
glibc-0ab7632d38f52e2a540b3550f69ec0ed293c0cdb.tar.bz2
glibc-0ab7632d38f52e2a540b3550f69ec0ed293c0cdb.zip
* sysdeps/unix/sysv/linux/bits/sched.h: Add new CLONE_* flags,
remove CLONE_STOPPED.
Diffstat (limited to 'sysdeps')
-rw-r--r--sysdeps/unix/sysv/linux/bits/sched.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/sysdeps/unix/sysv/linux/bits/sched.h b/sysdeps/unix/sysv/linux/bits/sched.h
index 5387b9cef0..38ba305006 100644
--- a/sysdeps/unix/sysv/linux/bits/sched.h
+++ b/sysdeps/unix/sysv/linux/bits/sched.h
@@ -59,7 +59,12 @@
force CLONE_PTRACE on this clone. */
# define CLONE_CHILD_SETTID 0x01000000 /* Store TID in userlevel buffer in
the child. */
-# define CLONE_STOPPED 0x02000000 /* Start in stopped state. */
+# define CLONE_NEWUTS 0x04000000 /* New utsname group. */
+# define CLONE_NEWIPC 0x08000000 /* New ipcs. */
+# define CLONE_NEWUSER 0x10000000 /* New user namespace. */
+# define CLONE_NEWPID 0x20000000 /* New pid namespace. */
+# define CLONE_NEWNET 0x40000000 /* New network namespace. */
+# define CLONE_IO 0x80000000 /* Clone I/O context. */
#endif
/* The official definition. */