Edit File by line
/home/barbar84/public_h.../wp-conte.../plugins/sujqvwi/ShExBy/shex_roo.../usr/include/bits
File: mman.h
/* Definitions for POSIX memory map interface. Linux/x86_64 version.
[0] Fix | Delete
Copyright (C) 2001-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 _SYS_MMAN_H
[18] Fix | Delete
# error "Never use <bits/mman.h> directly; include <sys/mman.h> instead."
[19] Fix | Delete
#endif
[20] Fix | Delete
[21] Fix | Delete
/* The following definitions basically come from the kernel headers.
[22] Fix | Delete
But the kernel header is not namespace clean. */
[23] Fix | Delete
[24] Fix | Delete
/* Other flags. */
[25] Fix | Delete
#ifdef __USE_MISC
[26] Fix | Delete
# define MAP_32BIT 0x40 /* Only give out 32-bit addresses. */
[27] Fix | Delete
#endif
[28] Fix | Delete
[29] Fix | Delete
/* These are Linux-specific. */
[30] Fix | Delete
#ifdef __USE_MISC
[31] Fix | Delete
# define MAP_GROWSDOWN 0x00100 /* Stack-like segment. */
[32] Fix | Delete
# define MAP_DENYWRITE 0x00800 /* ETXTBSY */
[33] Fix | Delete
# define MAP_EXECUTABLE 0x01000 /* Mark it as an executable. */
[34] Fix | Delete
# define MAP_LOCKED 0x02000 /* Lock the mapping. */
[35] Fix | Delete
# define MAP_NORESERVE 0x04000 /* Don't check for reservations. */
[36] Fix | Delete
# define MAP_POPULATE 0x08000 /* Populate (prefault) pagetables. */
[37] Fix | Delete
# define MAP_NONBLOCK 0x10000 /* Do not block on IO. */
[38] Fix | Delete
# define MAP_STACK 0x20000 /* Allocation is for a stack. */
[39] Fix | Delete
# define MAP_HUGETLB 0x40000 /* Create huge page mapping. */
[40] Fix | Delete
# define MAP_SYNC 0x80000 /* Perform synchronous page
[41] Fix | Delete
faults for the mapping. */
[42] Fix | Delete
# define MAP_FIXED_NOREPLACE 0x100000 /* MAP_FIXED but do not unmap
[43] Fix | Delete
underlying mapping. */
[44] Fix | Delete
#endif
[45] Fix | Delete
[46] Fix | Delete
/* Include generic Linux declarations. */
[47] Fix | Delete
#include <bits/mman-linux.h>
[48] Fix | Delete
[49] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function