2020-06-15 07:18:57 -07:00
|
|
|
#ifndef COSMOPOLITAN_LIBC_SYSV_CONSTS_MAP_H_
|
|
|
|
#define COSMOPOLITAN_LIBC_SYSV_CONSTS_MAP_H_
|
|
|
|
#if !(__ASSEMBLER__ + __LINKER__ + 0)
|
|
|
|
COSMOPOLITAN_C_START_
|
|
|
|
|
2022-08-05 23:50:08 +02:00
|
|
|
extern const int MAP_32BIT;
|
|
|
|
extern const int MAP_ANON;
|
|
|
|
extern const int MAP_ANONYMOUS;
|
|
|
|
extern const int MAP_CONCEAL;
|
|
|
|
extern const int MAP_DENYWRITE;
|
|
|
|
extern const int MAP_EXECUTABLE;
|
|
|
|
extern const int MAP_FILE;
|
|
|
|
extern const int MAP_FIXED;
|
|
|
|
extern const int MAP_FIXED_NOREPLACE;
|
|
|
|
extern const int MAP_HASSEMAPHORE;
|
2024-05-22 12:10:03 -07:00
|
|
|
extern const int MAP_HUGETLB;
|
2022-08-05 23:50:08 +02:00
|
|
|
extern const int MAP_INHERIT;
|
2023-11-17 02:33:14 -08:00
|
|
|
extern const int MAP_JIT;
|
2022-08-05 23:50:08 +02:00
|
|
|
extern const int MAP_LOCKED;
|
2024-02-01 03:39:46 -08:00
|
|
|
extern const int MAP_NOCACHE;
|
|
|
|
extern const int MAP_NOEXTEND;
|
2022-08-05 23:50:08 +02:00
|
|
|
extern const int MAP_NONBLOCK;
|
|
|
|
extern const int MAP_NORESERVE;
|
|
|
|
extern const int MAP_NOSYNC;
|
|
|
|
extern const int MAP_POPULATE;
|
|
|
|
extern const int MAP_PRIVATE;
|
|
|
|
extern const int MAP_SHARED;
|
|
|
|
extern const int MAP_SHARED_VALIDATE;
|
2020-06-15 07:18:57 -07:00
|
|
|
|
|
|
|
COSMOPOLITAN_C_END_
|
|
|
|
#endif /* !(__ASSEMBLER__ + __LINKER__ + 0) */
|
|
|
|
|
2022-05-22 04:51:02 -07:00
|
|
|
#define MAP_FILE 0
|
|
|
|
#define MAP_SHARED 1
|
|
|
|
#define MAP_PRIVATE 2
|
|
|
|
#define MAP_TYPE 15
|
|
|
|
#define MAP_FIXED 16
|
2020-06-15 07:18:57 -07:00
|
|
|
|
2023-06-08 23:44:03 -07:00
|
|
|
#define MAP_ANONYMOUS MAP_ANONYMOUS
|
|
|
|
#define MAP_CONCEAL MAP_CONCEAL
|
|
|
|
#define MAP_EXECUTABLE MAP_EXECUTABLE
|
|
|
|
#define MAP_FIXED_NOREPLACE MAP_FIXED_NOREPLACE
|
|
|
|
#define MAP_HASSEMAPHORE MAP_HASSEMAPHORE
|
|
|
|
#define MAP_POPULATE MAP_POPULATE
|
2024-02-01 03:39:46 -08:00
|
|
|
#define MAP_NORESERVE MAP_NORESERVE
|
2020-06-15 07:18:57 -07:00
|
|
|
|
2021-02-02 20:21:06 -08:00
|
|
|
#define MAP_ANON MAP_ANONYMOUS
|
|
|
|
#define MAP_NOCORE MAP_CONCEAL
|
2020-06-15 07:18:57 -07:00
|
|
|
|
|
|
|
#endif /* COSMOPOLITAN_LIBC_SYSV_CONSTS_MAP_H_ */
|