mirror of
git://git.musl-libc.org/musl
synced 2024-12-16 03:35:06 +00:00
030b452b8d
this is actually rather ugly, and would get even uglier if we ever want to support further feature test macros. at some point i may factor the bits headers into separate files for C base, POSIX base, and nonstandard extensions (the only distinctions that seem to matter now) and then the logic for which to include can go in the main header rather than being duplicated for each arch. the downside of this is that it would result in more files having to be opened during compilation, so as long as the ugliness does not grow, i'm inclined to leave it alone for now.
51 lines
1.2 KiB
C
51 lines
1.2 KiB
C
#define MAP_FAILED ((void *) -1)
|
|
|
|
#define PROT_NONE 0
|
|
#define PROT_READ 1
|
|
#define PROT_WRITE 2
|
|
#define PROT_EXEC 4
|
|
#define PROT_GROWSDOWN 0x01000000
|
|
#define PROT_GROWSUP 0x02000000
|
|
|
|
#define MAP_SHARED 0x01
|
|
#define MAP_PRIVATE 0x02
|
|
#define MAP_FIXED 0x10
|
|
|
|
#define MAP_TYPE 0x0f
|
|
#define MAP_FILE 0x00
|
|
#define MAP_ANON 0x20
|
|
#define MAP_ANONYMOUS MAP_ANON
|
|
#define MAP_32BIT 0x40
|
|
|
|
#define POSIX_MADV_NORMAL 0
|
|
#define POSIX_MADV_RANDOM 1
|
|
#define POSIX_MADV_SEQUENTIAL 2
|
|
#define POSIX_MADV_WILLNEED 3
|
|
#define POSIX_MADV_DONTNEED 0
|
|
|
|
#define MS_ASYNC 1
|
|
#define MS_INVALIDATE 2
|
|
#define MS_SYNC 4
|
|
|
|
#define MCL_CURRENT 1
|
|
#define MCL_FUTURE 2
|
|
|
|
#if defined(_GNU_SOURCE) || defined(_BSD_SOURCE)
|
|
#define MADV_NORMAL 0
|
|
#define MADV_RANDOM 1
|
|
#define MADV_SEQUENTIAL 2
|
|
#define MADV_WILLNEED 3
|
|
#define MADV_DONTNEED 4
|
|
#define MADV_REMOVE 9
|
|
#define MADV_DONTFORK 10
|
|
#define MADV_DOFORK 11
|
|
#define MADV_MERGEABLE 12
|
|
#define MADV_UNMERGEABLE 13
|
|
#define MADV_HUGEPAGE 14
|
|
#define MADV_NOHUGEPAGE 15
|
|
#define MADV_HWPOISON 100
|
|
|
|
#define MREMAP_MAYMOVE 1
|
|
#define MREMAP_FIXED 2
|
|
#endif
|