mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-25 06:20:06 +00:00
e81a4f9a54
Continuing the series of patches to clean up conformtest expectations for "POSIX" (1995/6) based on review of the expectations against the standard, this patch cleans up expectations for sys/mman.h, sys/stat.h and sys/types.h. Tested x86_64; no new XFAILs needed. * conform/data/sys/mman.h-data [POSIX] (size_t): Do not require type. [POSIX] (off_t): Likewise. * conform/data/sys/stat.h-data (S_IRGRP): Require constant. [POSIX] (S_ISBLK): Require macro. [POSIX] (S_ISCHR): Likewise. [POSIX] (S_ISDIR): Likewise. [POSIX] (S_ISFIFO): Likewise. [POSIX] (S_ISREG): Likewise. [POSIX || XPG3 || XPG4 || UNIX98] (S_TYPEISTMO): Do not list optional-macro. * conform/data/sys/types.h-data [POSIX] (blkcnt_t): Do not require type. [POSIX] (time_t): Likewise. [POSIX] (timer_t): Likewise.
65 lines
1.6 KiB
Plaintext
65 lines
1.6 KiB
Plaintext
#if !defined ISO && !defined ISO99 && !defined ISO11 && !defined XPG3
|
|
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 XPG3 && !defined XPG4 && !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
|