2.9
[glibc/nacl-glibc.git] / conform / data / sys / mman.h-data
blobc737efbc23049cc7c70dd5377c15445ae8dc5e14
1 constant PROT_READ
2 constant PROT_WRITE
3 constant PROT_EXEC
4 constant PROT_NONE
6 constant MAP_SHARED
7 constant MAP_PRIVATE
8 constant MAP_FIXED
10 constant MS_ASYNC
11 constant MS_SYNC
12 constant MS_INVALIDATE
14 constant MCL_CURRENT
15 constant MCL_FUTURE
17 constant MAP_FAILED
19 constant POSIX_MADV_NORMAL
20 constant POSIX_MADV_SEQUENTIAL
21 constant POSIX_MADV_RANDOM
22 constant POSIX_MADV_WILLNEED
23 constant POSIX_MADV_DONTNEED
25 optional-constant POSIX_TYPED_MEM_ALLOCATE
26 optional-constant POSIX_TYPED_MEM_ALLOCATE_CONTIG
27 optional-constant POSIX_TYPED_MEM_MAP_ALLOCATABLE
29 type size_t
30 type off_t
31 type mode_t
33 optional-type {struct posix_typedmem_info}
34 optional-element {struct posix_typedmem_info} size_t posix_tmi_length
36 function int mlock (const void*, size_t)
37 function int mlockall (int)
38 function {void*} mmap (void*, size_t, int, int, int, off_t)
39 function int mprotect (void*, size_t, int)
40 function int msync (void*, size_t, int)
41 function int munlock (const void*, size_t)
42 function int munlockall (void)
43 function int munmap (void*, size_t)
44 function int posix_madvise (void*, size_t, int)
45 optional-function int posix_mem_offset (const void*, size_t, off_t*, size_t*, int*)
46 optional-function int posix_typed_mem_get_info (int, struct posix_typed_mem_info*)
47 optional-function int posix_typed_mem_open (const char*, int, int)
48 function int shm_open (const char*, int, mode_t)
49 function int shm_unlink (const char*)
51 allow shm_*
52 allow MAP_*
53 allow MCL_*
54 allow MS_*
55 allow PROT_*
56 allow *_t