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.14-480-ge35f65e


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  e35f65ea8dbd8f3d011bc93af56f7a3161172b26 (commit)
      from  78239589cd8c6667886b94c4db146109855f417a (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=e35f65ea8dbd8f3d011bc93af56f7a3161172b26

commit e35f65ea8dbd8f3d011bc93af56f7a3161172b26
Author: Ulrich Drepper <drepper@gmail.com>
Date:   Tue Nov 1 10:38:00 2011 -0400

    unsigned long it better for the size arguments
    
    The new syscalls should use unsigned long not size_t.  The parameters
    are not a direct measure of memory size.

diff --git a/sysdeps/unix/sysv/linux/bits/uio.h b/sysdeps/unix/sysv/linux/bits/uio.h
index ea850c8..b2d7719 100644
--- a/sysdeps/unix/sysv/linux/bits/uio.h
+++ b/sysdeps/unix/sysv/linux/bits/uio.h
@@ -56,16 +56,18 @@ __BEGIN_DECLS
 
 /* Read from another process' address space.  */
 extern ssize_t process_vm_readv (pid_t __pid, __const struct iovec *__lvec,
-				 size_t __liovcnt,
+				 unsigned long int __liovcnt,
 				 __const struct iovec *__rvec,
-				 size_t __riovcnt, unsigned long int __flags)
+				 unsigned long int __riovcnt,
+				 unsigned long int __flags)
   __THROW;
 
 /* Write to another process' address space.  */
 extern ssize_t process_vm_writev (pid_t __pid, __const struct iovec *__lvec,
-				  size_t __liovcnt,
+				  unsigned long int __liovcnt,
 				  __const struct iovec *__rvec,
-				  size_t __riovcnt, unsigned long int __flags)
+				  unsigned long int __riovcnt,
+				  unsigned long int __flags)
   __THROW;
 
 __END_DECLS

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

Summary of changes:
 sysdeps/unix/sysv/linux/bits/uio.h |   10 ++++++----
 1 files changed, 6 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]