diff options
author | Daniel Jacobowitz <dan@codesourcery.com> | 2006-10-31 17:18:09 +0000 |
---|---|---|
committer | Daniel Jacobowitz <dan@codesourcery.com> | 2006-10-31 17:18:09 +0000 |
commit | 57ba32a810df29d2a3f45ffc2d1c1f6170a5a9f7 (patch) | |
tree | 7d0ee54205b623315f9152f5454899cfb96651af | |
parent | a7d03b9189c8ed5fefe566f61cec0da6c4ad4276 (diff) | |
download | glibc-57ba32a810df29d2a3f45ffc2d1c1f6170a5a9f7.tar glibc-57ba32a810df29d2a3f45ffc2d1c1f6170a5a9f7.tar.gz glibc-57ba32a810df29d2a3f45ffc2d1c1f6170a5a9f7.tar.bz2 glibc-57ba32a810df29d2a3f45ffc2d1c1f6170a5a9f7.zip |
* sysdeps/unix/sysv/linux/arm/bits/fcntl.h (splice): Update
prototype.
-rw-r--r-- | ChangeLog.arm | 5 | ||||
-rw-r--r-- | sysdeps/unix/sysv/linux/arm/bits/fcntl.h | 3 |
2 files changed, 7 insertions, 1 deletions
diff --git a/ChangeLog.arm b/ChangeLog.arm index e23a2915f4..bff4409fe0 100644 --- a/ChangeLog.arm +++ b/ChangeLog.arm @@ -1,5 +1,10 @@ 2006-10-31 Joseph Myers <joseph@codesourcery.com> + * sysdeps/unix/sysv/linux/arm/bits/fcntl.h (splice): Update + prototype. + +2006-10-31 Joseph Myers <joseph@codesourcery.com> + * sysdeps/unix/sysv/linux/arm/kernel-features.h: Remove __i386__ conditional. diff --git a/sysdeps/unix/sysv/linux/arm/bits/fcntl.h b/sysdeps/unix/sysv/linux/arm/bits/fcntl.h index 287dbd56f7..7c7b7c2027 100644 --- a/sysdeps/unix/sysv/linux/arm/bits/fcntl.h +++ b/sysdeps/unix/sysv/linux/arm/bits/fcntl.h @@ -223,7 +223,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. */ |