summaryrefslogtreecommitdiff
path: root/arch/i386/bits/mman.h
diff options
context:
space:
mode:
authorSzabolcs Nagy <nsz@port70.net>2013-01-11 02:07:40 +0100
committerSzabolcs Nagy <nsz@port70.net>2013-01-12 19:42:39 +0100
commit000806cde6416f51f783d2dc487d49b47d297e4e (patch)
treee6a5cfc19785decc302c4420042cd7bbdab48da3 /arch/i386/bits/mman.h
parentbc1a8d2ae3837a7303f14d381a4c37218f0c8fcb (diff)
downloadmusl-000806cde6416f51f783d2dc487d49b47d297e4e.tar.gz
add missing mmap options and madvices to bits/mman.h based on linux headers
Diffstat (limited to 'arch/i386/bits/mman.h')
-rw-r--r--arch/i386/bits/mman.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/arch/i386/bits/mman.h b/arch/i386/bits/mman.h
index 4083c198..add63855 100644
--- a/arch/i386/bits/mman.h
+++ b/arch/i386/bits/mman.h
@@ -21,6 +21,10 @@
#define MAP_DENYWRITE 0x0800
#define MAP_EXECUTABLE 0x1000
#define MAP_LOCKED 0x2000
+#define MAP_POPULATE 0x8000
+#define MAP_NONBLOCK 0x10000
+#define MAP_STACK 0x20000
+#define MAP_HUGETLB 0x40000
#define POSIX_MADV_NORMAL 0
#define POSIX_MADV_RANDOM 1
@@ -48,7 +52,10 @@
#define MADV_UNMERGEABLE 13
#define MADV_HUGEPAGE 14
#define MADV_NOHUGEPAGE 15
+#define MADV_DONTDUMP 16
+#define MADV_DODUMP 17
#define MADV_HWPOISON 100
+#define MADV_SOFT_OFFLINE 101
#define MREMAP_MAYMOVE 1
#define MREMAP_FIXED 2