diff options
author | Christoph Hellwig <hch@lst.de> | 2019-06-24 06:37:37 -0700 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2019-07-05 14:47:20 +0200 |
commit | ed495bf14d60373c13357e0783ffd3b96e076360 (patch) | |
tree | 9084a6a5cd1eaceabf774c6a696318757d812b67 /libc/sysdeps/linux | |
parent | 4f506bb95ad4bc55e6174cef98803802a35b050e (diff) |
riscv: add the MAP_UNINITIALIZED definition
This avoids a nommu build failure.
Signed-off-by: Christoph Hellwig <hch@lst.de>
Diffstat (limited to 'libc/sysdeps/linux')
-rw-r--r-- | libc/sysdeps/linux/riscv64/bits/mman.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libc/sysdeps/linux/riscv64/bits/mman.h b/libc/sysdeps/linux/riscv64/bits/mman.h index 316f87d99..fa6f8e6a0 100644 --- a/libc/sysdeps/linux/riscv64/bits/mman.h +++ b/libc/sysdeps/linux/riscv64/bits/mman.h @@ -31,6 +31,7 @@ # define MAP_HUGETLB 0x40000 /* Create huge page mapping. */ # define MAP_SYNC 0x80000 /* Perform synchronous page faults for the mapping. */ +# define MAP_UNINITIALIZED 0x4000000 /* For anonymous mmap, memory could - be uninitialized. */ #endif /* Include generic Linux declarations. */ |