blob: 55e0ca17e439df33ae8a8a4747e61d0f40b2b43d [file] [log] [blame]
Elliott Hughes180edef2023-11-02 00:08:05 +00001/*
2 * This file is auto-generated. Modifications will be lost.
3 *
4 * See https://android.googlesource.com/platform/bionic/+/master/libc/kernel/
5 * for more information.
6 */
Ben Cheng655a7c02013-10-16 16:09:24 -07007#ifndef __ASM_GENERIC_MMAN_COMMON_H
8#define __ASM_GENERIC_MMAN_COMMON_H
9#define PROT_READ 0x1
10#define PROT_WRITE 0x2
Ben Cheng655a7c02013-10-16 16:09:24 -070011#define PROT_EXEC 0x4
12#define PROT_SEM 0x8
13#define PROT_NONE 0x0
14#define PROT_GROWSDOWN 0x01000000
Ben Cheng655a7c02013-10-16 16:09:24 -070015#define PROT_GROWSUP 0x02000000
Ben Cheng655a7c02013-10-16 16:09:24 -070016#define MAP_TYPE 0x0f
Ben Cheng655a7c02013-10-16 16:09:24 -070017#define MAP_FIXED 0x10
18#define MAP_ANONYMOUS 0x20
Christopher Ferrisb8a95e22019-10-02 18:29:20 -070019#define MAP_POPULATE 0x008000
20#define MAP_NONBLOCK 0x010000
21#define MAP_STACK 0x020000
22#define MAP_HUGETLB 0x040000
23#define MAP_SYNC 0x080000
Christopher Ferris76a1d452018-06-27 14:12:29 -070024#define MAP_FIXED_NOREPLACE 0x100000
Christopher Ferrisb8a95e22019-10-02 18:29:20 -070025#define MAP_UNINITIALIZED 0x4000000
Christopher Ferris05d08e92016-02-04 13:16:38 -080026#define MLOCK_ONFAULT 0x01
Christopher Ferris05d08e92016-02-04 13:16:38 -080027#define MS_ASYNC 1
Ben Cheng655a7c02013-10-16 16:09:24 -070028#define MS_INVALIDATE 2
29#define MS_SYNC 4
30#define MADV_NORMAL 0
Christopher Ferris05d08e92016-02-04 13:16:38 -080031#define MADV_RANDOM 1
Ben Cheng655a7c02013-10-16 16:09:24 -070032#define MADV_SEQUENTIAL 2
33#define MADV_WILLNEED 3
34#define MADV_DONTNEED 4
Christopher Ferris106b3a82016-08-24 12:15:38 -070035#define MADV_FREE 8
Christopher Ferris05d08e92016-02-04 13:16:38 -080036#define MADV_REMOVE 9
Ben Cheng655a7c02013-10-16 16:09:24 -070037#define MADV_DONTFORK 10
38#define MADV_DOFORK 11
Christopher Ferris106b3a82016-08-24 12:15:38 -070039#define MADV_HWPOISON 100
Christopher Ferris05d08e92016-02-04 13:16:38 -080040#define MADV_SOFT_OFFLINE 101
Ben Cheng655a7c02013-10-16 16:09:24 -070041#define MADV_MERGEABLE 12
42#define MADV_UNMERGEABLE 13
Christopher Ferris106b3a82016-08-24 12:15:38 -070043#define MADV_HUGEPAGE 14
Christopher Ferris05d08e92016-02-04 13:16:38 -080044#define MADV_NOHUGEPAGE 15
Ben Cheng655a7c02013-10-16 16:09:24 -070045#define MADV_DONTDUMP 16
46#define MADV_DODUMP 17
Christopher Ferris1308ad32017-11-14 17:32:13 -080047#define MADV_WIPEONFORK 18
48#define MADV_KEEPONFORK 19
Christopher Ferris9584fa42019-12-09 15:36:13 -080049#define MADV_COLD 20
50#define MADV_PAGEOUT 21
Christopher Ferris3a39c0b2021-09-02 00:03:38 +000051#define MADV_POPULATE_READ 22
52#define MADV_POPULATE_WRITE 23
Christopher Ferris10a76e62022-06-08 13:31:52 -070053#define MADV_DONTNEED_LOCKED 24
Christopher Ferris6cd53a52022-12-12 23:39:16 +000054#define MADV_COLLAPSE 25
Christopher Ferris106b3a82016-08-24 12:15:38 -070055#define MAP_FILE 0
Christopher Ferris6a9755d2017-01-13 14:09:31 -080056#define PKEY_DISABLE_ACCESS 0x1
Christopher Ferris6a9755d2017-01-13 14:09:31 -080057#define PKEY_DISABLE_WRITE 0x2
58#define PKEY_ACCESS_MASK (PKEY_DISABLE_ACCESS | PKEY_DISABLE_WRITE)
59#endif