Imported Upstream version 2.4.3
[platform/upstream/audit.git] / auparse / mmaptab.h
1 /* mmaptab.h --
2  * Copyright 2012-13 Red Hat Inc., Durham, North Carolina.
3  * All Rights Reserved.
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Lesser General Public
7  * License as published by the Free Software Foundation; either
8  * version 2.1 of the License, or (at your option) any later version.
9  *
10  * This library is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * Lesser General Public License for more details.
14  *
15  * You should have received a copy of the GNU Lesser General Public
16  * License along with this library; if not, write to the Free Software
17  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
18  *
19  * Authors:
20  *      Steve Grubb <sgrubb@redhat.com>
21  * Location: include/uapi/asm-generic/mman.h  >0x100
22  *           include/uapi/asm-generic/mman-common.h < 0x100
23  * NOTE: If this is updated, also update interpret.c:print_mmap()
24  */
25
26 _S(0x00001, "MAP_SHARED"        )
27 _S(0x00002, "MAP_PRIVATE"       )
28 _S(0x00010, "MAP_FIXED"         )
29 _S(0x00020, "MAP_ANONYMOUS"     )
30 _S(0x00040, "MAP_32BIT"         )
31 _S(0x00100, "MAP_GROWSDOWN"     )
32 _S(0x00800, "MAP_DENYWRITE"     )
33 _S(0x01000, "MAP_EXECUTABLE"    )
34 _S(0x02000, "MAP_LOCKED"        )
35 _S(0x04000, "MAP_NORESERVE"     )
36 _S(0x08000, "MAP_POPULATE"      )
37 _S(0x10000, "MAP_NONBLOCK"      )
38 _S(0x20000, "MAP_STACK"         )
39 _S(0x40000, "MAP_HUGETLB"       )
40