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.12/master, updated. glibc-2.12.1-30-g4e49771


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.12/master has been updated
       via  4e4977136127323e4306d24f2e32b4a1eb4b9d4b (commit)
      from  ac02cf3af6f46706a29f21fc762f7099a7a546cc (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=4e4977136127323e4306d24f2e32b4a1eb4b9d4b

commit 4e4977136127323e4306d24f2e32b4a1eb4b9d4b
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 93f6ed4..b46ff5c 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  Ryan S. Arnold  <rsa@us.ibm.com>
 
 	* config.h.in: Added HAVE_PPC64_PT_GNU_STACK which is set during a
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]