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-347-g439c43f


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  439c43f6eabcb515b445e2bb03a653ec678f3021 (commit)
      from  48e435cd93fa55ff415b90fbcdf657ded01e45b6 (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=439c43f6eabcb515b445e2bb03a653ec678f3021

commit 439c43f6eabcb515b445e2bb03a653ec678f3021
Author: Roland McGrath <roland@hack.frob.com>
Date:   Fri Dec 12 14:00:37 2014 -0800

    Fix NPTL build for !__ASSUME_SET_ROBUST_LIST case.

diff --git a/ChangeLog b/ChangeLog
index b815868..ea4ebb7 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2014-12-12  Roland McGrath  <roland@hack.frob.com>
+
+	* nptl/pthread_create.c (START_THREAD_DEFN)
+	[! __ASSUME_SET_ROBUST_LIST]: Add missing & in lll_futex_wake argument.
+
 2014-12-12  Stefan Liebler  <stli@linux.vnet.ibm.com>
 	    Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
 
diff --git a/nptl/pthread_create.c b/nptl/pthread_create.c
index 0e96a2e..c4b0726 100644
--- a/nptl/pthread_create.c
+++ b/nptl/pthread_create.c
@@ -414,7 +414,7 @@ START_THREAD_DEFN
 	  this->__list.__next = NULL;
 
 	  atomic_or (&this->__lock, FUTEX_OWNER_DIED);
-	  lll_futex_wake (this->__lock, 1, /* XYZ */ LLL_SHARED);
+	  lll_futex_wake (&this->__lock, 1, /* XYZ */ LLL_SHARED);
 	}
       while (robust != (void *) &pd->robust_head);
     }

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

Summary of changes:
 ChangeLog             |    5 +++++
 nptl/pthread_create.c |    2 +-
 2 files changed, 6 insertions(+), 1 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]