]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
* sysdeps/unix/sysv/linux/alpha/bits/fcntl.h (splice): Add offin
authorUlrich Drepper <drepper@redhat.com>
Wed, 30 Aug 2006 15:05:29 +0000 (15:05 +0000)
committerUlrich Drepper <drepper@redhat.com>
Wed, 30 Aug 2006 15:05:29 +0000 (15:05 +0000)
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.

ChangeLog
sysdeps/unix/sysv/linux/alpha/bits/fcntl.h
sysdeps/unix/sysv/linux/i386/bits/fcntl.h
sysdeps/unix/sysv/linux/ia64/bits/fcntl.h
sysdeps/unix/sysv/linux/powerpc/bits/fcntl.h
sysdeps/unix/sysv/linux/s390/bits/fcntl.h
sysdeps/unix/sysv/linux/sh/bits/fcntl.h
sysdeps/unix/sysv/linux/sparc/bits/fcntl.h
sysdeps/unix/sysv/linux/syscalls.list
sysdeps/unix/sysv/linux/x86_64/bits/fcntl.h

index 5b771b341d46bf2325ef3f17f5b52f052eedf928..a75ac8b23b17ec77aee6ef59710ebb3630dc8207 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,16 @@
+2006-08-30  Jakub Jelinek  <jakub@redhat.com>
+
+       * 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.
+
 2006-08-28  Ulrich Drepper  <drepper@redhat.com>
 
        * elf/dl-load.c (_dl_init_paths): Expand DSTs.
index 6084c38c91c33d87de5c3ad6689e8d69ff189bf6..f17dc2bdc11d1cfb65588aa9634a45f95bf27afe 100644 (file)
@@ -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.  */
index 1f7ac0f25a3dc47a0dc39aac1f21344d1bcdb271..6de33302ee174ee700f92cdc0594e4b470f3ccd1 100644 (file)
@@ -224,7 +224,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.  */
index ef66d465dedb84ae28a8ad013b8d3b1db0e85bd0..ed8c2da9e24a2ec81d3d888a32343d5b4ffcd5ae 100644 (file)
@@ -218,7 +218,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.  */
index 57fc7bd987ca114aacc48cc724dbcfd3a9876930..c4964e0fd879945b816b7687c409e42ca70e7fcd 100644 (file)
@@ -224,7 +224,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.  */
index e5a917dbfa40df5a6c4b5f8ac5f8e2e2f68f5ad6..c611028f2957e82ccc98ae2ecd1890854cd6c526 100644 (file)
@@ -244,7 +244,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.  */
index 1f7ac0f25a3dc47a0dc39aac1f21344d1bcdb271..6de33302ee174ee700f92cdc0594e4b470f3ccd1 100644 (file)
@@ -224,7 +224,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.  */
index a965d31654b80e672f562ccfcfc9b7dfdbe5267e..d68bfeb0ef962b8cda548bda173438cf6d7b23dc 100644 (file)
@@ -243,7 +243,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.  */
index afb6d809781a1b9270141401ad83e7bd36da25e5..fca29b26ff86bd7e337945c14ea1689155fce478 100644 (file)
@@ -67,7 +67,7 @@ setfsgid      EXTRA   setfsgid        i:i     setfsgid
 setfsuid       EXTRA   setfsuid        i:i     setfsuid
 setpgid                -       setpgid         i:ii    __setpgid       setpgid
 sigaltstack    -       sigaltstack     i:PP    __sigaltstack   sigaltstack
-splice         EXTRA   splice          i:iiii  splice
+splice         EXTRA   splice          i:iPiPii        splice
 sysinfo                EXTRA   sysinfo         i:p     sysinfo
 swapon         -       swapon          i:si    __swapon        swapon
 swapoff                -       swapoff         i:s     __swapoff       swapoff
index 4f10f22224395d3e38433acc62b8db7a2bd05da1..fa1d02bc1fbeb6e170d9a72c4103681740b402d1 100644 (file)
@@ -238,7 +238,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.  */