]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
2006-04-27 Carlos O'Donell <carlos@systemhalted.org>
authorCarlos O'Donell <carlos@systemhalted.org>
Thu, 27 Apr 2006 15:49:46 +0000 (15:49 +0000)
committerCarlos O'Donell <carlos@systemhalted.org>
Thu, 27 Apr 2006 15:49:46 +0000 (15:49 +0000)
* sysdeps/unix/sysv/linux/hppa/bits/fcntl.h: Include uio.h, and
define vmsplice.

ChangeLog.hppa
sysdeps/unix/sysv/linux/hppa/bits/fcntl.h

index 89e45ca6fffec0a24feebe2ecc0dca07575e4dc7..b927ecfe35e58c1a2df416fc6f8a9effef60f0df 100644 (file)
@@ -1,3 +1,8 @@
+2006-04-27  Carlos O'Donell  <carlos@systemhalted.org>
+
+       * sysdeps/unix/sysv/linux/hppa/bits/fcntl.h: Include uio.h, and
+       define vmsplice.
+
 2006-04-21  Carlos O'Donell  <carlos@systemhalted.org>
 
        * sysdeps/hppa/dl-tls.h: New file
index 867b0938da172ab8e73ac80e6ea3818725c21923..e2bf52671164d0be73653d715460828e377f1c72 100644 (file)
@@ -23,7 +23,9 @@
 #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 */
@@ -196,6 +198,10 @@ extern ssize_t readahead (int __fd, __off64_t __offset, size_t __count)
 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;