aboutsummaryrefslogtreecommitdiff
path: root/conform/data/sys/mman.h-data
diff options
context:
space:
mode:
authorZack Weinberg <zackw@panix.com>2017-06-08 15:39:03 -0400
committerZack Weinberg <zackw@panix.com>2017-06-08 15:39:03 -0400
commit5046dbb4a7eba5eccfd258f92f4735c9ffc8d069 (patch)
tree4470480d904b65cf14ca524f96f79eca818c3eaf /conform/data/sys/mman.h-data
parent199fc19d3aaaf57944ef036e15904febe877fc93 (diff)
downloadglibc-zack/build-layout-experiment.tar
glibc-zack/build-layout-experiment.tar.gz
glibc-zack/build-layout-experiment.tar.bz2
glibc-zack/build-layout-experiment.zip
Prepare for radical source tree reorganization.zack/build-layout-experiment
All top-level files and directories are moved into a temporary storage directory, REORG.TODO, except for files that will certainly still exist in their current form at top level when we're done (COPYING, COPYING.LIB, LICENSES, NEWS, README), all old ChangeLog files (which are moved to the new directory OldChangeLogs, instead), and the generated file INSTALL (which is just deleted; in the new order, there will be no generated files checked into version control).
Diffstat (limited to 'conform/data/sys/mman.h-data')
-rw-r--r--conform/data/sys/mman.h-data64
1 files changed, 0 insertions, 64 deletions
diff --git a/conform/data/sys/mman.h-data b/conform/data/sys/mman.h-data
deleted file mode 100644
index a74388338e..0000000000
--- a/conform/data/sys/mman.h-data
+++ /dev/null
@@ -1,64 +0,0 @@
-#if !defined ISO && !defined ISO99 && !defined ISO11 && !defined XPG4
-constant PROT_READ
-constant PROT_WRITE
-constant PROT_EXEC
-constant PROT_NONE
-
-constant MAP_SHARED
-constant MAP_PRIVATE
-constant MAP_FIXED
-
-constant MS_ASYNC
-constant MS_SYNC
-constant MS_INVALIDATE
-
-constant MCL_CURRENT
-constant MCL_FUTURE
-
-constant MAP_FAILED
-
-# if !defined POSIX && !defined XPG4 && !defined XPG42 && !defined UNIX98
-constant POSIX_MADV_NORMAL
-constant POSIX_MADV_SEQUENTIAL
-constant POSIX_MADV_RANDOM
-constant POSIX_MADV_WILLNEED
-constant POSIX_MADV_DONTNEED
-
-optional-constant POSIX_TYPED_MEM_ALLOCATE
-optional-constant POSIX_TYPED_MEM_ALLOCATE_CONTIG
-optional-constant POSIX_TYPED_MEM_MAP_ALLOCATABLE
-
-type mode_t
-
-optional-type {struct posix_typedmem_info}
-optional-element {struct posix_typedmem_info} size_t posix_tmi_length
-
-function int posix_madvise (void*, size_t, int)
-optional-function int posix_mem_offset (const void*, size_t, off_t*, size_t*, int*)
-optional-function int posix_typed_mem_get_info (int, struct posix_typed_mem_info*)
-optional-function int posix_typed_mem_open (const char*, int, int)
-# endif
-
-# ifndef POSIX
-type size_t
-type off_t
-# endif
-
-function int mlock (const void*, size_t)
-function int mlockall (int)
-function {void*} mmap (void*, size_t, int, int, int, off_t)
-function int mprotect (void*, size_t, int)
-function int msync (void*, size_t, int)
-function int munlock (const void*, size_t)
-function int munlockall (void)
-function int munmap (void*, size_t)
-function int shm_open (const char*, int, mode_t)
-function int shm_unlink (const char*)
-
-allow shm_*
-allow MAP_*
-allow MCL_*
-allow MS_*
-allow PROT_*
-allow *_t
-#endif