Edit File by line
/home/barbar84/www/wp-conte.../plugins/sujqvwi/AnonR/smanonr..../usr/include/bits
File: uio-ext.h
/* Operating system-specific extensions to sys/uio.h - Linux version.
[0] Fix | Delete
Copyright (C) 1996-2018 Free Software Foundation, Inc.
[1] Fix | Delete
This file is part of the GNU C Library.
[2] Fix | Delete
[3] Fix | Delete
The GNU C Library is free software; you can redistribute it and/or
[4] Fix | Delete
modify it under the terms of the GNU Lesser General Public
[5] Fix | Delete
License as published by the Free Software Foundation; either
[6] Fix | Delete
version 2.1 of the License, or (at your option) any later version.
[7] Fix | Delete
[8] Fix | Delete
The GNU C Library is distributed in the hope that it will be useful,
[9] Fix | Delete
but WITHOUT ANY WARRANTY; without even the implied warranty of
[10] Fix | Delete
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
[11] Fix | Delete
Lesser General Public License for more details.
[12] Fix | Delete
[13] Fix | Delete
You should have received a copy of the GNU Lesser General Public
[14] Fix | Delete
License along with the GNU C Library; if not, see
[15] Fix | Delete
<http://www.gnu.org/licenses/>. */
[16] Fix | Delete
[17] Fix | Delete
#ifndef _BITS_UIO_EXT_H
[18] Fix | Delete
#define _BITS_UIO_EXT_H 1
[19] Fix | Delete
[20] Fix | Delete
#ifndef _SYS_UIO_H
[21] Fix | Delete
# error "Never include <bits/uio-ext.h> directly; use <sys/uio.h> instead."
[22] Fix | Delete
#endif
[23] Fix | Delete
[24] Fix | Delete
__BEGIN_DECLS
[25] Fix | Delete
[26] Fix | Delete
/* Read from another process' address space. */
[27] Fix | Delete
extern ssize_t process_vm_readv (pid_t __pid, const struct iovec *__lvec,
[28] Fix | Delete
unsigned long int __liovcnt,
[29] Fix | Delete
const struct iovec *__rvec,
[30] Fix | Delete
unsigned long int __riovcnt,
[31] Fix | Delete
unsigned long int __flags)
[32] Fix | Delete
__THROW;
[33] Fix | Delete
[34] Fix | Delete
/* Write to another process' address space. */
[35] Fix | Delete
extern ssize_t process_vm_writev (pid_t __pid, const struct iovec *__lvec,
[36] Fix | Delete
unsigned long int __liovcnt,
[37] Fix | Delete
const struct iovec *__rvec,
[38] Fix | Delete
unsigned long int __riovcnt,
[39] Fix | Delete
unsigned long int __flags)
[40] Fix | Delete
__THROW;
[41] Fix | Delete
[42] Fix | Delete
/* Flags for preadv2/pwritev2. */
[43] Fix | Delete
#define RWF_HIPRI 0x00000001 /* High priority request. */
[44] Fix | Delete
#define RWF_DSYNC 0x00000002 /* per-IO O_DSYNC. */
[45] Fix | Delete
#define RWF_SYNC 0x00000004 /* per-IO O_SYNC. */
[46] Fix | Delete
#define RWF_NOWAIT 0x00000008 /* per-IO nonblocking mode. */
[47] Fix | Delete
#define RWF_APPEND 0x00000010 /* per-IO O_APPEND. */
[48] Fix | Delete
[49] Fix | Delete
__END_DECLS
[50] Fix | Delete
[51] Fix | Delete
#endif /* bits/uio-ext.h */
[52] Fix | Delete
[53] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function