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.15-1173-g06c5abb


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  06c5abbdf81660d1ca99a3b4467f91fb9bca84dd (commit)
       via  a3aeac403e69ad264274f0e24a16066376a84708 (commit)
      from  49bdf4c19d35c8ae4070699dc0267db3b9a7d79c (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://sources.redhat.com/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=06c5abbdf81660d1ca99a3b4467f91fb9bca84dd

commit 06c5abbdf81660d1ca99a3b4467f91fb9bca84dd
Author: Andreas Jaeger <aj@suse.de>
Date:   Fri Jun 15 09:14:17 2012 +0200

    Update manual/contrib.texi
    
    Update entry of Liubov Dmitrieva and add entries for Will Schmidt and Tulio Magno
    Quites Machado Filho.

diff --git a/ChangeLog b/ChangeLog
index d0972ea..f632292 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2012-06-15  Andreas Jaeger  <aj@suse.de>
+
+	* manual/contrib.texi (Contributors): Update entry of Liubov
+	Dmitrieva and add entries for Will Schmidt and Tulio Magno Quites
+	Machado Filho.
+
 2012-06-15  Cyril Hrubis  <metan@ucw.cz>
 
 	* string/string.h: Add __wur to GNU version of strerror_r.
diff --git a/manual/contrib.texi b/manual/contrib.texi
index 00e13ab..1445c78 100644
--- a/manual/contrib.texi
+++ b/manual/contrib.texi
@@ -50,7 +50,8 @@ committee.
 Thomas Bushnell for his contributions to Hurd.
 
 @item
-Liubov Dmitrieva for optimzed string functions on x86-64 and x86.
+Liubov Dmitrieva for optimzed string and math functions on x86-64 and
+x86.
 
 @item
 Ulrich Drepper for his many contributions in almost all parts of
@@ -80,6 +81,11 @@ Paul Eggert for the @code{mktime} function and for his direction as
 part of @theglibc{} steering committee.
 
 @item
+Tulio Magno Quites Machado Filho for adding a new class of installed
+headers for low-level platform-specific functionality and one such for
+PowerPC.
+
+@item
 Mike Frysinger for his maintaining of the IA64 architecture and for
 testing and bug fixing.
 
@@ -233,6 +239,9 @@ Siddhesh Poyarekar for various fixes.
 Pravin Satpute for writing sorting rules for some Indian languages.
 
 @item
+Will Schmidt for optimized string functions on PowerPC.
+
+@item
 Martin Schwidefsky for porting to Linux on s390
 (@code{s390-@var{anything}-linux}) and s390x
 (@code{s390x-@var{anything}-linux}).

http://sources.redhat.com/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=a3aeac403e69ad264274f0e24a16066376a84708

commit a3aeac403e69ad264274f0e24a16066376a84708
Author: Cyril Hrubis <metan@ucw.cz>
Date:   Fri Jun 15 09:09:05 2012 +0200

    Add __wur to GNU version of strerror_r.
    
    Not using the result of the GNU strerror_r() is always a mistake.
    
    Moreover this would generate warning if XSI version was expected but GNU
    version was used instead (because some random used header defined
    _GNU_SOURCE which was Python.h in this case).

diff --git a/ChangeLog b/ChangeLog
index 6263861..d0972ea 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2012-06-15  Cyril Hrubis  <metan@ucw.cz>
+
+	* string/string.h: Add __wur to GNU version of strerror_r.
+
 2012-06-14  H.J. Lu  <hongjiu.lu@intel.com>
 
 	[BZ #14229]
diff --git a/string/string.h b/string/string.h
index 7bb505f..879410a 100644
--- a/string/string.h
+++ b/string/string.h
@@ -1,5 +1,4 @@
-/* Copyright (C) 1991-1993,1995-2004,2007,2009,2010,2012
-   Free Software Foundation, Inc.
+/* Copyright (C) 1991-2012 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
@@ -433,7 +432,7 @@ extern int __xpg_strerror_r (int __errnum, char *__buf, size_t __buflen)
 /* If a temporary buffer is required, at most BUFLEN bytes of BUF will be
    used.  */
 extern char *strerror_r (int __errnum, char *__buf, size_t __buflen)
-     __THROW __nonnull ((2));
+     __THROW __nonnull ((2)) __wur;
 # endif
 #endif
 

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

Summary of changes:
 ChangeLog           |   10 ++++++++++
 manual/contrib.texi |   11 ++++++++++-
 string/string.h     |    5 ++---
 3 files changed, 22 insertions(+), 4 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]