diff options
author | Daniel Jacobowitz <dan@codesourcery.com> | 2006-10-31 17:17:46 +0000 |
---|---|---|
committer | Daniel Jacobowitz <dan@codesourcery.com> | 2006-10-31 17:17:46 +0000 |
commit | a7d03b9189c8ed5fefe566f61cec0da6c4ad4276 (patch) | |
tree | bf073252d0a0d9687f5d4204ba05261dca979618 | |
parent | d2ff5a57f978b10976daa7969676bb1176b3f2c1 (diff) | |
download | glibc-a7d03b9189c8ed5fefe566f61cec0da6c4ad4276.tar glibc-a7d03b9189c8ed5fefe566f61cec0da6c4ad4276.tar.gz glibc-a7d03b9189c8ed5fefe566f61cec0da6c4ad4276.tar.bz2 glibc-a7d03b9189c8ed5fefe566f61cec0da6c4ad4276.zip |
* sysdeps/unix/sysv/linux/mips/bits/fcntl.h (splice): Update
prototype.
-rw-r--r-- | ChangeLog.mips | 5 | ||||
-rw-r--r-- | sysdeps/unix/sysv/linux/mips/bits/fcntl.h | 3 |
2 files changed, 7 insertions, 1 deletions
diff --git a/ChangeLog.mips b/ChangeLog.mips index 0c9fb72c12..9c0ccf5480 100644 --- a/ChangeLog.mips +++ b/ChangeLog.mips @@ -1,3 +1,8 @@ +2006-10-31 Joseph Myers <joseph@codesourcery.com> + + * sysdeps/unix/sysv/linux/mips/bits/fcntl.h (splice): Update + prototype. + 2006-09-22 Richard Sandiford <richard@codesourcery.com> * sysdeps/unix/sysv/linux/mips/xstatconv.c: Remove STAT_IS_KERNEL_STAT diff --git a/sysdeps/unix/sysv/linux/mips/bits/fcntl.h b/sysdeps/unix/sysv/linux/mips/bits/fcntl.h index b6672b7514..d40b4b6386 100644 --- a/sysdeps/unix/sysv/linux/mips/bits/fcntl.h +++ b/sysdeps/unix/sysv/linux/mips/bits/fcntl.h @@ -237,7 +237,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. */ |