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.17-517-g96497bb


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  96497bb806e4a3f7105cd1b742c1cd4686780553 (commit)
      from  085b2d41a45e9b8cf9f78876a10ca0869dbc64fd (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=96497bb806e4a3f7105cd1b742c1cd4686780553

commit 96497bb806e4a3f7105cd1b742c1cd4686780553
Author: Carlos O'Donell <carlos@redhat.com>
Date:   Sun Apr 7 16:13:02 2013 -0400

    sem_post.c: Include atomic.h.
    
    The sem_post.c file uses atomic functions without including
    atomic.h. Add `#include <atomic.h>' to the file to prevent
    any compile time warnings when other headers change and
    atomic.h isn't implicitly included.
    
    ---
    nptl/
    
    2013-04-07  Carlos O'Donell  <carlos@redhat.com>
    
    	* sysdeps/unix/sysv/linux/sem_post.c: Include atomic.h.

diff --git a/nptl/ChangeLog b/nptl/ChangeLog
index 505f9af..517dfef 100644
--- a/nptl/ChangeLog
+++ b/nptl/ChangeLog
@@ -1,3 +1,7 @@
+2013-04-07  Carlos O'Donell  <carlos@redhat.com>
+
+	* sysdeps/unix/sysv/linux/sem_post.c: Include atomic.h.
+
 2013-04-04  Siddhesh Poyarekar  <siddhesh@redhat.com>
 
 	[BZ #15337]
diff --git a/nptl/sysdeps/unix/sysv/linux/sem_post.c b/nptl/sysdeps/unix/sysv/linux/sem_post.c
index 6d3657c..622c7b0 100644
--- a/nptl/sysdeps/unix/sysv/linux/sem_post.c
+++ b/nptl/sysdeps/unix/sysv/linux/sem_post.c
@@ -17,6 +17,7 @@
    License along with the GNU C Library; if not, see
    <http://www.gnu.org/licenses/>.  */
 
+#include <atomic.h>
 #include <errno.h>
 #include <sysdep.h>
 #include <lowlevellock.h>

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

Summary of changes:
 nptl/ChangeLog                          |    4 ++++
 nptl/sysdeps/unix/sysv/linux/sem_post.c |    1 +
 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]