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.8/master, updated. glibc-2.8-31-gb880e57


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.8/master has been updated
       via  b880e57e2d2d9c3cab664bced7cdb7b84c10c7a5 (commit)
      from  8b06a408445a9b0fb5a9f774e5c994f4583d3d30 (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=b880e57e2d2d9c3cab664bced7cdb7b84c10c7a5

commit b880e57e2d2d9c3cab664bced7cdb7b84c10c7a5
Author: Ryan Arnold <ryanarn@etna.rchland.ibm.com>
Date:   Mon Aug 3 11:51:43 2009 -0500

    Change prototypes to use __iovec for struct iovec * parameters names rather
    than __iovector which is reserved in GCC 4.3.
    
    2009-08-03  Ryan S. Arnold  <rsa@us.ibm.com>
    
    	* include/sys/uio.h (__readv, __libc_readv, __writev, __libc_writev):
    	Change prototypes to use __iovec for struct iovec * parameters rather
    	than __iovector which is a reserved word in GCC 4.3.

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:
 include/sys/uio.h |    8 ++++----
 1 files changed, 4 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]