123456789101112131415161718192021222324 |
- #ifndef __GBLIBC_SYS_MMAN_H
- #define __GBLIBC_SYS_MMAN_H
- #include <sys/types.h>
- #define MAP_SHARED 0x01
- #define MAP_PRIVATE 0x02
- #define MAP_FIXED 0x10
- #define MAP_ANONYMOUS 0x20
- #define PROT_NONE 0
- #define PROT_READ 1
- #define PROT_WRITE 2
- #define PROT_EXEC 4
- #ifdef __cplusplus
- extern "C" {
- #endif
- #ifdef __cplusplus
- }
- #endif
- #endif
|