diff options
author | Ulrich Drepper <drepper@redhat.com> | 2006-08-30 15:05:29 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2006-08-30 15:05:29 +0000 |
commit | 99ea5991a4957f7a21466a4b48c5020eb70db2b7 (patch) | |
tree | cd17c29218b0a06efa7686d1c8cbb363fdeebacb /sysdeps/unix/sysv/linux/alpha | |
parent | 950398e1320255572f4228db94344dcd5f613455 (diff) | |
download | glibc-99ea5991a4957f7a21466a4b48c5020eb70db2b7.tar.gz glibc-99ea5991a4957f7a21466a4b48c5020eb70db2b7.tar.xz glibc-99ea5991a4957f7a21466a4b48c5020eb70db2b7.zip |
* sysdeps/unix/sysv/linux/alpha/bits/fcntl.h (splice): Add offin
and offout arguments to the prototype. * sysdeps/unix/sysv/linux/s390/bits/fcntl.h (splice): Likewise. * sysdeps/unix/sysv/linux/powerpc/bits/fcntl.h (splice): Likewise. * sysdeps/unix/sysv/linux/sparc/bits/fcntl.h (splice): Likewise. * sysdeps/unix/sysv/linux/sh/bits/fcntl.h (splice): Likewise. * sysdeps/unix/sysv/linux/i386/bits/fcntl.h (splice): Likewise. * sysdeps/unix/sysv/linux/ia64/bits/fcntl.h (splice): Likewise. * sysdeps/unix/sysv/linux/x86_64/bits/fcntl.h (splice): Likewise. * sysdeps/unix/sysv/linux/syscalls.list (splice): Adjust args string.
Diffstat (limited to 'sysdeps/unix/sysv/linux/alpha')
-rw-r--r-- | sysdeps/unix/sysv/linux/alpha/bits/fcntl.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sysdeps/unix/sysv/linux/alpha/bits/fcntl.h b/sysdeps/unix/sysv/linux/alpha/bits/fcntl.h index 6084c38c91..f17dc2bdc1 100644 --- a/sysdeps/unix/sysv/linux/alpha/bits/fcntl.h +++ b/sysdeps/unix/sysv/linux/alpha/bits/fcntl.h @@ -216,7 +216,8 @@ extern int vmsplice (int __fdout, const struct iovec *__iov, size_t __count, unsigned int __flags); /* Splice two files together. */ -extern int splice (int __fdin, int __fdout, size_t __len, unsigned int __flags) +extern int splice (int __fdin, __off64_t *__offin, int __fdout, + __off64_t *__offout, size_t __len, unsigned int __flags) __THROW; /* In-kernel implementation of tee for pipe buffers. */ |