diff options
author | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2017-09-28 08:41:27 -0700 |
---|---|---|
committer | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2017-10-17 17:52:04 -0200 |
commit | 71d85045fdaefbd2dc1708ed6123ebdb880cb3ed (patch) | |
tree | 9d803a9b0d691ebc5def1ff953e347bc31bef4f5 /sysdeps/unix/sysv/linux | |
parent | 3381be5cdef2e43949db12f66a5a3ec23b2c4c90 (diff) | |
download | glibc-71d85045fdaefbd2dc1708ed6123ebdb880cb3ed.tar.gz glibc-71d85045fdaefbd2dc1708ed6123ebdb880cb3ed.tar.xz glibc-71d85045fdaefbd2dc1708ed6123ebdb880cb3ed.zip |
posix: Add p{readv,writev}2 flags to generic uio-ext.h
* bits/uio-ext.h (RWF_HIPRI, RWF_DSYNC, RWF_SYNC, RWF_NOWAIT): New defines.
Diffstat (limited to 'sysdeps/unix/sysv/linux')
-rw-r--r-- | sysdeps/unix/sysv/linux/bits/uio-ext.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sysdeps/unix/sysv/linux/bits/uio-ext.h b/sysdeps/unix/sysv/linux/bits/uio-ext.h index 751fc4917d..f931fd112a 100644 --- a/sysdeps/unix/sysv/linux/bits/uio-ext.h +++ b/sysdeps/unix/sysv/linux/bits/uio-ext.h @@ -41,8 +41,7 @@ extern ssize_t process_vm_writev (pid_t __pid, const struct iovec *__lvec, unsigned long int __flags) __THROW; - -/* Flags for preadv2/pwritev2: */ +/* Flags for preadv2/pwritev2. */ #define RWF_HIPRI 0x00000001 /* High priority request. */ #define RWF_DSYNC 0x00000002 /* per-IO O_DSYNC. */ #define RWF_SYNC 0x00000004 /* per-IO O_SYNC. */ |