diff options
author | Ulrich Drepper <drepper@redhat.com> | 2007-09-18 16:20:44 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2007-09-18 16:20:44 +0000 |
commit | b197b0e1ae379bcdd9668a91595ed10346b15a23 (patch) | |
tree | 0d858731fb9c0bdee258862e658f28fa24b18d3b /sysdeps/unix/sysv/linux/alpha/bits | |
parent | 3dd79d63094a33921ba845da6d3ea7eec3abfa2f (diff) | |
download | glibc-b197b0e1ae379bcdd9668a91595ed10346b15a23.tar.gz glibc-b197b0e1ae379bcdd9668a91595ed10346b15a23.tar.xz glibc-b197b0e1ae379bcdd9668a91595ed10346b15a23.zip |
Correct return value type __THROW marker of splice, vmsplice, and tee.
Diffstat (limited to 'sysdeps/unix/sysv/linux/alpha/bits')
-rw-r--r-- | sysdeps/unix/sysv/linux/alpha/bits/fcntl.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/sysdeps/unix/sysv/linux/alpha/bits/fcntl.h b/sysdeps/unix/sysv/linux/alpha/bits/fcntl.h index b4f49cf633..7c93183ad4 100644 --- a/sysdeps/unix/sysv/linux/alpha/bits/fcntl.h +++ b/sysdeps/unix/sysv/linux/alpha/bits/fcntl.h @@ -213,17 +213,17 @@ extern int sync_file_range (int __fd, __off64_t __from, __off64_t __to, /* Splice address range into a pipe. */ -extern int vmsplice (int __fdout, const struct iovec *__iov, size_t __count, - unsigned int __flags); +extern ssize_t vmsplice (int __fdout, const struct iovec *__iov, + size_t __count, unsigned int __flags); /* Splice two files together. */ -extern int splice (int __fdin, __off64_t *__offin, int __fdout, - __off64_t *__offout, size_t __len, unsigned int __flags) - __THROW; +extern ssize_t splice (int __fdin, __off64_t *__offin, int __fdout, + __off64_t *__offout, size_t __len, + unsigned int __flags); /* In-kernel implementation of tee for pipe buffers. */ -extern int tee (int __fdin, int __fdout, size_t __len, unsigned int __flags) - __THROW; +extern ssize_t tee (int __fdin, int __fdout, size_t __len, + unsigned int __flags); #endif |