about summary refs log tree commit diff
path: root/sysdeps/unix/sysv/linux/powerpc/bits/fcntl.h
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2006-04-26 22:29:43 +0000
committerUlrich Drepper <drepper@redhat.com>2006-04-26 22:29:43 +0000
commitc8c3ab914e7e401bb470037002b546afb1d83133 (patch)
tree1f658040e756672534141ffbcfd261d6ec4fe913 /sysdeps/unix/sysv/linux/powerpc/bits/fcntl.h
parentf4d22f0fecb8714fccce04a5e61cea66fdee00c4 (diff)
downloadglibc-c8c3ab914e7e401bb470037002b546afb1d83133.tar.gz
glibc-c8c3ab914e7e401bb470037002b546afb1d83133.tar.xz
glibc-c8c3ab914e7e401bb470037002b546afb1d83133.zip
* sysdeps/unix/sysv/linux/syscalls.list: Add vmsplice.
	* sysdeps/unix/sysv/linux/Versions: Export vmsplice@@GLIBC_2.5.
	* sysdeps/unix/sysv/linux/sparc/bits/fcntl.h: Declare vmsplice.
	* sysdeps/unix/sysv/linux/ia64/bits/fcntl.h: Likewise.
	* sysdeps/unix/sysv/linux/sh/bits/fcntl.h: Likewise.
	* sysdeps/unix/sysv/linux/i386/bits/fcntl.h: Likewise.
	* sysdeps/unix/sysv/linux/s390/bits/fcntl.h: Likewise.
	* sysdeps/unix/sysv/linux/x86_64/bits/fcntl.h: Likewise.
	* sysdeps/unix/sysv/linux/alpha/bits/fcntl.h: Likewise.
	* sysdeps/unix/sysv/linux/powerpc/bits/fcntl.h: Likewise.

	* sysdeps/unix/sysv/linux/bits/uio.h: Fix a typo in a comment.
Diffstat (limited to 'sysdeps/unix/sysv/linux/powerpc/bits/fcntl.h')
-rw-r--r--sysdeps/unix/sysv/linux/powerpc/bits/fcntl.h9
1 files changed, 8 insertions, 1 deletions
diff --git a/sysdeps/unix/sysv/linux/powerpc/bits/fcntl.h b/sysdeps/unix/sysv/linux/powerpc/bits/fcntl.h
index 2219271a1b..2843c6e9cc 100644
--- a/sysdeps/unix/sysv/linux/powerpc/bits/fcntl.h
+++ b/sysdeps/unix/sysv/linux/powerpc/bits/fcntl.h
@@ -22,8 +22,11 @@
 # error "Never use <bits/fcntl.h> directly; include <fcntl.h> instead."
 #endif
 
-
 #include <sys/types.h>
+#ifdef __USE_GNU
+# include <bits/uio.h>
+#endif
+
 
 /* open/fcntl - O_SYNC is only implemented on blocks devices and on files
    located on an ext2 file system */
@@ -207,6 +210,10 @@ extern int sync_file_range (int __fd, __off64_t __from, __off64_t __to,
 			    unsigned int __flags);
 
 
+/* Splice address range into a pipe.  */
+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)
     __THROW;