mirror of
https://sourceware.org/git/glibc.git
synced 2025-01-05 09:01:07 +00:00
* 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.
This commit is contained in:
parent
950398e132
commit
99ea5991a4
13
ChangeLog
13
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>
|
2006-08-28 Ulrich Drepper <drepper@redhat.com>
|
||||||
|
|
||||||
* elf/dl-load.c (_dl_init_paths): Expand DSTs.
|
* elf/dl-load.c (_dl_init_paths): Expand DSTs.
|
||||||
|
@ -216,7 +216,8 @@ extern int vmsplice (int __fdout, const struct iovec *__iov, size_t __count,
|
|||||||
unsigned int __flags);
|
unsigned int __flags);
|
||||||
|
|
||||||
/* Splice two files together. */
|
/* 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;
|
__THROW;
|
||||||
|
|
||||||
/* In-kernel implementation of tee for pipe buffers. */
|
/* In-kernel implementation of tee for pipe buffers. */
|
||||||
|
@ -224,7 +224,8 @@ extern int vmsplice (int __fdout, const struct iovec *__iov, size_t __count,
|
|||||||
unsigned int __flags);
|
unsigned int __flags);
|
||||||
|
|
||||||
/* Splice two files together. */
|
/* 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;
|
__THROW;
|
||||||
|
|
||||||
/* In-kernel implementation of tee for pipe buffers. */
|
/* In-kernel implementation of tee for pipe buffers. */
|
||||||
|
@ -218,7 +218,8 @@ extern int vmsplice (int __fdout, const struct iovec *__iov, size_t __count,
|
|||||||
unsigned int __flags);
|
unsigned int __flags);
|
||||||
|
|
||||||
/* Splice two files together. */
|
/* 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;
|
__THROW;
|
||||||
|
|
||||||
/* In-kernel implementation of tee for pipe buffers. */
|
/* In-kernel implementation of tee for pipe buffers. */
|
||||||
|
@ -224,7 +224,8 @@ extern int vmsplice (int __fdout, const struct iovec *__iov, size_t __count,
|
|||||||
unsigned int __flags);
|
unsigned int __flags);
|
||||||
|
|
||||||
/* Splice two files together. */
|
/* 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;
|
__THROW;
|
||||||
|
|
||||||
/* In-kernel implementation of tee for pipe buffers. */
|
/* In-kernel implementation of tee for pipe buffers. */
|
||||||
|
@ -244,7 +244,8 @@ extern int vmsplice (int __fdout, const struct iovec *__iov, size_t __count,
|
|||||||
unsigned int __flags);
|
unsigned int __flags);
|
||||||
|
|
||||||
/* Splice two files together. */
|
/* 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;
|
__THROW;
|
||||||
|
|
||||||
/* In-kernel implementation of tee for pipe buffers. */
|
/* In-kernel implementation of tee for pipe buffers. */
|
||||||
|
@ -224,7 +224,8 @@ extern int vmsplice (int __fdout, const struct iovec *__iov, size_t __count,
|
|||||||
unsigned int __flags);
|
unsigned int __flags);
|
||||||
|
|
||||||
/* Splice two files together. */
|
/* 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;
|
__THROW;
|
||||||
|
|
||||||
/* In-kernel implementation of tee for pipe buffers. */
|
/* In-kernel implementation of tee for pipe buffers. */
|
||||||
|
@ -243,7 +243,8 @@ extern int vmsplice (int __fdout, const struct iovec *__iov, size_t __count,
|
|||||||
unsigned int __flags);
|
unsigned int __flags);
|
||||||
|
|
||||||
/* Splice two files together. */
|
/* 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;
|
__THROW;
|
||||||
|
|
||||||
/* In-kernel implementation of tee for pipe buffers. */
|
/* In-kernel implementation of tee for pipe buffers. */
|
||||||
|
@ -67,7 +67,7 @@ setfsgid EXTRA setfsgid i:i setfsgid
|
|||||||
setfsuid EXTRA setfsuid i:i setfsuid
|
setfsuid EXTRA setfsuid i:i setfsuid
|
||||||
setpgid - setpgid i:ii __setpgid setpgid
|
setpgid - setpgid i:ii __setpgid setpgid
|
||||||
sigaltstack - sigaltstack i:PP __sigaltstack sigaltstack
|
sigaltstack - sigaltstack i:PP __sigaltstack sigaltstack
|
||||||
splice EXTRA splice i:iiii splice
|
splice EXTRA splice i:iPiPii splice
|
||||||
sysinfo EXTRA sysinfo i:p sysinfo
|
sysinfo EXTRA sysinfo i:p sysinfo
|
||||||
swapon - swapon i:si __swapon swapon
|
swapon - swapon i:si __swapon swapon
|
||||||
swapoff - swapoff i:s __swapoff swapoff
|
swapoff - swapoff i:s __swapoff swapoff
|
||||||
|
@ -238,7 +238,8 @@ extern int vmsplice (int __fdout, const struct iovec *__iov, size_t __count,
|
|||||||
unsigned int __flags);
|
unsigned int __flags);
|
||||||
|
|
||||||
/* Splice two files together. */
|
/* 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;
|
__THROW;
|
||||||
|
|
||||||
/* In-kernel implementation of tee for pipe buffers. */
|
/* In-kernel implementation of tee for pipe buffers. */
|
||||||
|
Loading…
Reference in New Issue
Block a user