1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-08-08 17:42:12 +03:00
Files
glibc/conform/data/sys/resource.h-data
Collin Funk d18213c699 conform: Add initial support for C23.
Hi Joseph,

As we discussed, this patch just makes C23 include every check that is
performed by C11.

I tested the commit by adding the ISO23 Make and Python variables to be
the same as ISO11.  So the only difference was compiling with -DISO23
instead of -DISO11.  And changed the temporary directories to instead
use the format f'/tmp/glibc-{self.standard}-{self.header}'.  Then I used
a shell script to run 'cmp' on each file in the ISO11 and ISO23
directories for each header to make sure they were the same.

-- 8< --

Make C23 checks include every test that is performed by C11.  Done by
running the following command:

find conform -name '*.h-data' | xargs sed -i \
  -e 's| !defined ISO11| !defined ISO11 \&\& !defined ISO23|g' \
  -e 's| defined ISO11| defined ISO11 \|\| defined ISO23|g' \
  -e 's|ifdef ISO11|if defined ISO11 \|\| defined ISO23|g' \
  -e 's|ifndef ISO11|if !defined ISO11 \&\& !defined ISO23|g'

Signed-off-by: Collin Funk <collin.funk1@gmail.com>
2025-04-10 18:39:05 +00:00

53 lines
1.0 KiB
Plaintext

#if !defined ISO && !defined ISO99 && !defined ISO11 && !defined ISO23 && !defined POSIX && !defined POSIX2008 && !defined XPG4
constant PRIO_PROCESS
constant PRIO_PGRP
constant PRIO_USER
type rlim_t
constant RLIM_INFINITY
constant RLIM_SAVED_MAX
constant RLIM_SAVED_CUR
constant RUSAGE_SELF
constant RUSAGE_CHILDREN
type {struct rlimit}
element {struct rlimit} rlim_t rlim_cur
element {struct rlimit} rlim_t rlim_max
type {struct rusage}
element {struct rusage} {struct timeval} ru_utime
element {struct rusage} {struct timeval} ru_stime
type {struct timeval}
constant RLIMIT_CORE
constant RLIMIT_CPU
constant RLIMIT_DATA
constant RLIMIT_FSIZE
constant RLIMIT_NOFILE
constant RLIMIT_STACK
constant RLIMIT_AS
function int getpriority (int, id_t)
function int getrlimit (int, struct rlimit*)
function int getrusage (int, struct rusage*)
function int setpriority (int, id_t, int)
function int setrlimit (int, const struct rlimit*)
type id_t
allow-header sys/time.h
allow rlim_*
allow ru_*
allow PRIO_*
allow RLIM_*
allow RLIMIT_*
allow RUSAGE_*
allow *_t
#endif