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, ibm/2.13/master, updated. glibc-2.13-24-g0019b30


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, ibm/2.13/master has been updated
       via  0019b30b5db722ba7da0639a67b378ed323801fe (commit)
      from  8cbf6ed460ab45ecf46f98d017a5c1ab0fc213b4 (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=0019b30b5db722ba7da0639a67b378ed323801fe

commit 0019b30b5db722ba7da0639a67b378ed323801fe
Author: Ryan Arnold <ryanarn@etna.rchland.ibm.com>
Date:   Tue May 11 09:48:21 2010 -0500

    This patch is not upstream.  It is useful and non-invasive.  It allows some
    recent versions of GCC to compile GLIBC when altivec is configured.
    
    2009-11-06  Petr Baudis <pasky@suse.cz>
    
    	* include/sys/uio.h: Change __vector to __iovec to avoid clash
    	with altivec.
    (cherry picked from commit bcb75669959f740e04208b773e99d87c5342dc34)

diff --git a/ChangeLog b/ChangeLog
index 1e3e0bf..8e160ee 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2009-11-06  Petr Baudis <pasky@suse.cz>
+
+	* include/sys/uio.h: Change __vector to __iovec to avoid clash
+	with altivec.
+
 2010-10-26  Peter Bergner  <bergner@vnet.ibm.com>
 
 	* elf/rtld.c (process_envvars): Added conditional EXTRA_LD_ENVVARS_11
diff --git a/include/sys/uio.h b/include/sys/uio.h
index 8c2b016..bfaec59 100644
--- a/include/sys/uio.h
+++ b/include/sys/uio.h
@@ -2,12 +2,12 @@
 #include <misc/sys/uio.h>
 
 /* Now define the internal interfaces.  */
-extern ssize_t __readv (int __fd, __const struct iovec *__vector,
+extern ssize_t __readv (int __fd, __const struct iovec *__iovec,
 			int __count);
-extern ssize_t __libc_readv (int __fd, __const struct iovec *__vector,
+extern ssize_t __libc_readv (int __fd, __const struct iovec *__iovec,
 			     int __count);
-extern ssize_t __writev (int __fd, __const struct iovec *__vector,
+extern ssize_t __writev (int __fd, __const struct iovec *__iovec,
 			 int __count);
-extern ssize_t __libc_writev (int __fd, __const struct iovec *__vector,
+extern ssize_t __libc_writev (int __fd, __const struct iovec *__iovec,
 			      int __count);
 #endif

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

Summary of changes:
 ChangeLog         |    5 +++++
 include/sys/uio.h |    8 ++++----
 2 files changed, 9 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]