2016-03-18 00:57:52 +00:00
|
|
|
#undef MAP_ANON
|
2012-07-12 02:29:57 +00:00
|
|
|
#define MAP_ANON 0x800
|
2016-03-18 00:57:52 +00:00
|
|
|
#undef MAP_NORESERVE
|
2012-12-06 00:20:48 +00:00
|
|
|
#define MAP_NORESERVE 0x0400
|
2016-03-18 00:57:52 +00:00
|
|
|
#undef MAP_GROWSDOWN
|
2012-12-06 15:57:22 +00:00
|
|
|
#define MAP_GROWSDOWN 0x1000
|
2016-03-18 00:57:52 +00:00
|
|
|
#undef MAP_DENYWRITE
|
2012-12-06 15:57:22 +00:00
|
|
|
#define MAP_DENYWRITE 0x2000
|
2016-03-18 00:57:52 +00:00
|
|
|
#undef MAP_EXECUTABLE
|
2012-12-06 15:57:22 +00:00
|
|
|
#define MAP_EXECUTABLE 0x4000
|
2016-03-18 00:57:52 +00:00
|
|
|
#undef MAP_LOCKED
|
2012-12-06 15:57:22 +00:00
|
|
|
#define MAP_LOCKED 0x8000
|
2016-03-18 00:57:52 +00:00
|
|
|
#undef MAP_POPULATE
|
2013-01-11 01:07:40 +00:00
|
|
|
#define MAP_POPULATE 0x10000
|
2016-03-18 00:57:52 +00:00
|
|
|
#undef MAP_NONBLOCK
|
2013-01-11 01:07:40 +00:00
|
|
|
#define MAP_NONBLOCK 0x20000
|
2016-03-18 00:57:52 +00:00
|
|
|
#undef MAP_STACK
|
2013-01-11 01:07:40 +00:00
|
|
|
#define MAP_STACK 0x40000
|
2016-03-18 00:57:52 +00:00
|
|
|
#undef MAP_HUGETLB
|
2013-01-11 01:07:40 +00:00
|
|
|
#define MAP_HUGETLB 0x80000
|
2018-02-02 20:10:09 +00:00
|
|
|
#undef MAP_SYNC
|
2012-07-11 08:22:13 +00:00
|
|
|
|
|
|
|
#if defined(_GNU_SOURCE) || defined(_BSD_SOURCE)
|
2016-03-18 00:57:52 +00:00
|
|
|
#undef MADV_SOFT_OFFLINE
|
2012-07-11 08:22:13 +00:00
|
|
|
#endif
|