getconf: register additional sysconf() variables

This commit is contained in:
Pierre Pronchery 2020-12-21 04:18:45 +01:00
parent 66890c1b41
commit 1f168930d7

View File

@ -48,6 +48,51 @@ static const getconf_catalog _getconf_catalog_confstr[] =
static const getconf_catalog _getconf_catalog_limits[] =
{
#ifdef _SC_2_C_BIND
{ _SC_2_C_BIND, "_POSIX2_C_BIND" },
#endif
#ifdef _SC_2_C_DEV
{ _SC_2_C_DEV, "_POSIX2_C_DEV" },
#endif
#ifdef _SC_2_CHAR_TERM
{ _SC_2_CHAR_TERM, "_POSIX2_CHAR_TERM" },
#endif
#ifdef _SC_2_FORT_DEV
{ _SC_2_FORT_DEV, "_POSIX2_FORT_DEV" },
#endif
#ifdef _SC_2_FORT_RUN
{ _SC_2_FORT_RUN, "_POSIX2_FORT_RUN" },
#endif
#ifdef _SC_2_LOCALEDEF
{ _SC_2_LOCALEDEF, "_POSIX2_LOCALEDEF" },
#endif
#ifdef _SC_2_PBS
{ _SC_2_PBS, "_POSIX2_PBS" },
#endif
#ifdef _SC_2_PBS_ACCOUNTING
{ _SC_2_PBS_ACCOUNTING, "_POSIX2_PBS_ACCOUNTING"},
#endif
#ifdef _SC_2_PBS_CHECKPOINT
{ _SC_2_PBS_CHECKPOINT, "_POSIX2_PBS_CHECKPOINT"},
#endif
#ifdef _SC_2_PBS_LOCATE
{ _SC_2_PBS_LOCATE, "_POSIX2_PBS_LOCATE" },
#endif
#ifdef _SC_2_PBS_MESSAGE
{ _SC_2_PBS_MESSAGE, "_POSIX2_PBS_MESSAGE" },
#endif
#ifdef _SC_2_PBS_TRACK
{ _SC_2_PBS_TRACK, "_POSIX2_PBS_TRACK" },
#endif
#ifdef _SC_2_SW_DEV
{ _SC_2_SW_DEV, "_POSIX2_SW_DEV" },
#endif
#ifdef _SC_2_UPE
{ _SC_2_UPE, "_POSIX2_UPE" },
#endif
#ifdef _SC_2_VERSION
{ _SC_2_VERSION, "_POSIX2_VERSION" },
#endif
#ifdef _SC_AIO_LISTIO_MAX
{ _SC_AIO_LISTIO_MAX, "AIO_LISTIO_MAX" },
#endif