diff options
author | Ulrich Drepper <drepper@gmail.com> | 2011-11-01 10:38:00 -0400 |
---|---|---|
committer | Ulrich Drepper <drepper@gmail.com> | 2011-11-01 10:38:00 -0400 |
commit | e35f65ea8dbd8f3d011bc93af56f7a3161172b26 (patch) | |
tree | 5cce38303c111e4b59bffa492507c7ab5eed0359 | |
parent | 78239589cd8c6667886b94c4db146109855f417a (diff) | |
download | glibc-e35f65ea8dbd8f3d011bc93af56f7a3161172b26.tar.gz glibc-e35f65ea8dbd8f3d011bc93af56f7a3161172b26.tar.xz glibc-e35f65ea8dbd8f3d011bc93af56f7a3161172b26.zip |
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.
-rw-r--r-- | sysdeps/unix/sysv/linux/bits/uio.h | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/sysdeps/unix/sysv/linux/bits/uio.h b/sysdeps/unix/sysv/linux/bits/uio.h index ea850c8b48..b2d77195c7 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 |