diff options
author | Joseph Myers <joseph@codesourcery.com> | 2014-06-11 23:16:23 +0000 |
---|---|---|
committer | Joseph Myers <joseph@codesourcery.com> | 2014-06-11 23:16:23 +0000 |
commit | e81a4f9a54a5ea47d1b7e91a1e76695af5749322 (patch) | |
tree | 758bfa2778d2be16db17da08642d7a503ad8ac62 /conform | |
parent | 89e435f3559c53084498e9baad22172b64429362 (diff) | |
download | glibc-e81a4f9a54a5ea47d1b7e91a1e76695af5749322.tar.gz glibc-e81a4f9a54a5ea47d1b7e91a1e76695af5749322.tar.xz glibc-e81a4f9a54a5ea47d1b7e91a1e76695af5749322.zip |
conformtest: clean up POSIX expectations for sys/mman.h, sys/stat.h, sys/types.h.
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.
Diffstat (limited to 'conform')
-rw-r--r-- | conform/data/sys/mman.h-data | 2 | ||||
-rw-r--r-- | conform/data/sys/stat.h-data | 5 | ||||
-rw-r--r-- | conform/data/sys/types.h-data | 4 |
3 files changed, 9 insertions, 2 deletions
diff --git a/conform/data/sys/mman.h-data b/conform/data/sys/mman.h-data index 0555fd1771..3a88684bc5 100644 --- a/conform/data/sys/mman.h-data +++ b/conform/data/sys/mman.h-data @@ -39,8 +39,10 @@ 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) diff --git a/conform/data/sys/stat.h-data b/conform/data/sys/stat.h-data index 41c3932b69..631daa41b0 100644 --- a/conform/data/sys/stat.h-data +++ b/conform/data/sys/stat.h-data @@ -66,6 +66,7 @@ constant S_IRUSR constant S_IWUSR constant S_IXUSR constant S_IRWXG +constant S_IRGRP constant S_IWGRP constant S_IXGRP constant S_IRWXO @@ -78,12 +79,12 @@ constant S_ISGID constant S_ISVTX #endif -#if !defined POSIX macro S_ISBLK macro S_ISCHR macro S_ISDIR macro S_ISFIFO macro S_ISREG +#if !defined POSIX macro S_ISLNK macro S_ISSOCK #endif @@ -92,7 +93,9 @@ macro S_ISSOCK optional-macro S_TYPEISMQ optional-macro S_TYPEISSEM optional-macro S_TYPEISSHM +# if !defined POSIX && !defined XPG3 && !defined XPG4 && !defined UNIX98 optional-macro S_TYPEISTMO +# endif # if defined XOPEN2K8 || defined POSIX2008 constant UTIME_NOW diff --git a/conform/data/sys/types.h-data b/conform/data/sys/types.h-data index cda19548a7..36c5efac63 100644 --- a/conform/data/sys/types.h-data +++ b/conform/data/sys/types.h-data @@ -1,6 +1,6 @@ #if !defined ISO && !defined ISO99 && !defined ISO11 -type blkcnt_t #if !defined POSIX +type blkcnt_t type blksize_t type clock_t type clockid_t @@ -48,8 +48,10 @@ type ssize_t # if !defined POSIX && !defined POSIX2008 type suseconds_t # endif +# ifndef POSIX type time_t type timer_t +# endif type uid_t allow *_t |