This is the mail archive of the glibc-cvs@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

GNU C Library master sources branch master updated. glibc-2.23-333-g4852667


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU C Library master sources".

The branch, master has been updated
       via  48526672b61d8cf65ac7aba40053a81498183104 (commit)
      from  2a1aa528244714587f7726a8f4561cd05682f0a7 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://sourceware.org/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=48526672b61d8cf65ac7aba40053a81498183104

commit 48526672b61d8cf65ac7aba40053a81498183104
Author: Joseph Myers <joseph@codesourcery.com>
Date:   Wed May 18 17:46:52 2016 +0000

    Add CLONE_NEWCGROUP from Linux 4.6 to bits/sched.h.
    
    This patch adds CLONE_NEWCGROUP, new in Linux 4.6, to
    sysdeps/unix/sysv/linux/bits/sched.h.
    
    Tested for x86_64 and x86 (testsuite, and that installed stripped
    shared libraries are unchanged by the patch).
    
    	* sysdeps/unix/sysv/linux/bits/sched.h [__USE_GNU]
    	(CLONE_NEWCGROUP): New macro.

diff --git a/ChangeLog b/ChangeLog
index 6d4143d..ee3cb0e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
 2016-05-18  Joseph Myers  <joseph@codesourcery.com>
 
+	* sysdeps/unix/sysv/linux/bits/sched.h [__USE_GNU]
+	(CLONE_NEWCGROUP): New macro.
+
 	* sysdeps/unix/sysv/linux/sys/quota.h [_LINUX_QUOTA_VERSION >= 2]
 	(Q_GETNEXTQUOTA): New macro.
 
diff --git a/sysdeps/unix/sysv/linux/bits/sched.h b/sysdeps/unix/sysv/linux/bits/sched.h
index 4f5305a..5da263f 100644
--- a/sysdeps/unix/sysv/linux/bits/sched.h
+++ b/sysdeps/unix/sysv/linux/bits/sched.h
@@ -60,6 +60,7 @@
 				      force CLONE_PTRACE on this clone.  */
 # define CLONE_CHILD_SETTID 0x01000000 /* Store TID in userlevel buffer in
 					  the child.  */
+# define CLONE_NEWCGROUP    0x02000000	/* New cgroup namespace.  */
 # define CLONE_NEWUTS	0x04000000	/* New utsname group.  */
 # define CLONE_NEWIPC	0x08000000	/* New ipcs.  */
 # define CLONE_NEWUSER	0x10000000	/* New user namespace.  */

-----------------------------------------------------------------------

Summary of changes:
 ChangeLog                            |    3 +++
 sysdeps/unix/sysv/linux/bits/sched.h |    1 +
 2 files changed, 4 insertions(+), 0 deletions(-)


hooks/post-receive
-- 
GNU C Library master sources


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]