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-528-gc60ec0e


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  c60ec0e016f9e2444c7bc2703fc6b671a26f0f5e (commit)
      from  5a9e4c09a2601a8100ea9a1f7bc0360782cd1625 (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=c60ec0e016f9e2444c7bc2703fc6b671a26f0f5e

commit c60ec0e016f9e2444c7bc2703fc6b671a26f0f5e
Author: Torvald Riegel <triegel@redhat.com>
Date:   Tue Jan 13 01:09:29 2015 +0100

    Fix wake-up in sysdeps/nptl/fork.c.

diff --git a/ChangeLog b/ChangeLog
index e8ca56b..e67cd0b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2015-01-13  Torvald Riegel  <triegel@redhat.com>
+
+	* sysdeps/nptl/fork.c (__libc_fork): Provide address of futex
+	variable to lll_futex_wake call, not the value itself.
+
 2015-01-12  Joseph Myers  <joseph@codesourcery.com>
 
 	[BZ #17803]
diff --git a/sysdeps/nptl/fork.c b/sysdeps/nptl/fork.c
index 5cffd82..74482b7 100644
--- a/sysdeps/nptl/fork.c
+++ b/sysdeps/nptl/fork.c
@@ -219,7 +219,7 @@ __libc_fork (void)
 
 	  if (atomic_decrement_and_test (&allp->handler->refcntr)
 	      && allp->handler->need_signal)
-	    lll_futex_wake (allp->handler->refcntr, 1, LLL_PRIVATE);
+	    lll_futex_wake (&allp->handler->refcntr, 1, LLL_PRIVATE);
 
 	  allp = allp->next;
 	}

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

Summary of changes:
 ChangeLog           |    5 +++++
 sysdeps/nptl/fork.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]