From 0500402162dd3b32b88238a039f544a386a5c86b Mon Sep 17 00:00:00 2001 From: "Peter S. Mazinger" Date: Thu, 21 Apr 2011 22:34:56 +0200 Subject: readv, writev: rewrite to use cancel.h Signed-off-by: Peter S. Mazinger Signed-off-by: Bernhard Reutner-Fischer --- libc/sysdeps/linux/common/readv.c | 40 ++++++++++---------------------------- libc/sysdeps/linux/common/writev.c | 40 +++++++++----------------------------- 2 files changed, 19 insertions(+), 61 deletions(-) (limited to 'libc') diff --git a/libc/sysdeps/linux/common/readv.c b/libc/sysdeps/linux/common/readv.c index fce396d5f..9418ea430 100644 --- a/libc/sysdeps/linux/common/readv.c +++ b/libc/sysdeps/linux/common/readv.c @@ -10,41 +10,21 @@ #include #include - -#ifdef __UCLIBC_HAS_THREADS_NATIVE__ -#include +#include /* We should deal with kernel which have a smaller UIO_FASTIOV as well as a very big count. */ -static ssize_t __readv (int fd, const struct iovec *vector, int count) +static ssize_t __NC(readv)(int fd, const struct iovec *vector, int count) { - ssize_t bytes_read; - - bytes_read = INLINE_SYSCALL (readv, 3, fd, vector, count); - - if (bytes_read >= 0 || errno != EINVAL || count <= UIO_FASTIOV) - return bytes_read; - - /* glibc tries again, but we do not. */ - //return __atomic_readv_replacement (fd, vector, count); - - return -1; -} - -ssize_t readv (int fd, const struct iovec *vector, int count) -{ - if (SINGLE_THREAD_P) - return __readv (fd, vector, count); - - int oldtype = LIBC_CANCEL_ASYNC (); + ssize_t bytes_read = INLINE_SYSCALL(readv, 3, fd, vector, count); - int result = __readv (fd, vector, count); + if (bytes_read >= 0 || errno != EINVAL || count <= UIO_FASTIOV) + return bytes_read; - LIBC_CANCEL_RESET (oldtype); + /* glibc tries again, but we do not. */ + /* return __atomic_readv_replacement (fd, vector, count); */ - return result; + return -1; } -#else -_syscall3(ssize_t, readv, int, filedes, const struct iovec *, vector, - int, count) -#endif +CANCELLABLE_SYSCALL(ssize_t, readv, (int fd, const struct iovec *vector, int count), + (fd, vector, count)) diff --git a/libc/sysdeps/linux/common/writev.c b/libc/sysdeps/linux/common/writev.c index bd0e4077d..9b59228c3 100644 --- a/libc/sysdeps/linux/common/writev.c +++ b/libc/sysdeps/linux/common/writev.c @@ -9,42 +9,20 @@ #include #include - -#ifdef __UCLIBC_HAS_THREADS_NATIVE__ -#include -#include +#include /* We should deal with kernel which have a smaller UIO_FASTIOV as well as a very big count. */ -static ssize_t __writev (int fd, const struct iovec *vector, int count) +static ssize_t __NC(writev)(int fd, const struct iovec *vector, int count) { - ssize_t bytes_written; - - bytes_written = INLINE_SYSCALL (writev, 3, fd, vector, count); - - if (bytes_written >= 0 || errno != EINVAL || count <= UIO_FASTIOV) - return bytes_written; - - /* glibc tries again, but we do not. */ - /* return __atomic_writev_replacement (fd, vector, count); */ - - return -1; -} - -ssize_t writev (int fd, const struct iovec *vector, int count) -{ - if (SINGLE_THREAD_P) - return __writev (fd, vector, count); - - int oldtype = LIBC_CANCEL_ASYNC (); + ssize_t bytes_written = INLINE_SYSCALL(writev, 3, fd, vector, count); - ssize_t result = __writev (fd, vector, count); + if (bytes_written >= 0 || errno != EINVAL || count <= UIO_FASTIOV) + return bytes_written; - LIBC_CANCEL_RESET (oldtype); + /* glibc tries again, but we do not. */ + /* return __atomic_writev_replacement (fd, vector, count); */ - return result; + return -1; } -#else -_syscall3(ssize_t, writev, int, filedes, const struct iovec *, vector, - int, count) -#endif +CANCELLABLE_SYSCALL(ssize_t, writev, (int fd, const struct iovec *vector, int count), (fd, vector, count)) -- cgit v1.2.3