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.20-507-gcc40d25


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  cc40d25e50621b8762d05c0984d572c1bc7507bf (commit)
      from  9287adf0895d4cf2f25d34c13c0f47202c01ddd0 (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=cc40d25e50621b8762d05c0984d572c1bc7507bf

commit cc40d25e50621b8762d05c0984d572c1bc7507bf
Author: Roland McGrath <roland@hack.frob.com>
Date:   Thu Jan 8 13:41:14 2015 -0800

    NPTL: Fixed missed conditionalization of setxid hooey.

diff --git a/ChangeLog b/ChangeLog
index 1d1d04b..23e1b33 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
 2015-01-08  Roland McGrath  <roland@hack.frob.com>
 
+	* nptl/nptl-init.c (pthread_functions): Conditionalize
+	.ptr__nptl_setxid initialization on [SIGSETXID].
+
 	* sysdeps/nptl/sys/procfs.h: New file.
 	* nptl_db/Makefile (headers): Add it.
 	* sysdeps/unix/sysv/linux/Makefile (sysdep_headers): Don't add it.
diff --git a/nptl/nptl-init.c b/nptl/nptl-init.c
index a85fac5..1ad41c5 100644
--- a/nptl/nptl-init.c
+++ b/nptl/nptl-init.c
@@ -140,7 +140,9 @@ static const struct pthread_functions pthread_functions =
     .ptr_nthreads = &__nptl_nthreads,
     .ptr___pthread_unwind = &__pthread_unwind,
     .ptr__nptl_deallocate_tsd = __nptl_deallocate_tsd,
+# ifdef SIGSETXID
     .ptr__nptl_setxid = __nptl_setxid,
+# endif
     /* For now only the stack cache needs to be freed.  */
     .ptr_freeres = nptl_freeres,
     .ptr_set_robust = __nptl_set_robust

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

Summary of changes:
 ChangeLog        |    3 +++
 nptl/nptl-init.c |    2 ++
 2 files changed, 5 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]