bpo-40190: Add support for _SC_AIX_REALMEM in sysconf (GH-19380)
This commit is contained in:
parent
6fed3c8540
commit
909f4a3009
|
@ -0,0 +1 @@
|
|||
Add support for ``_SC_AIX_REALMEM`` to :func:`posix.sysconf`.
|
|
@ -11424,6 +11424,9 @@ static struct constdef posix_constants_sysconf[] = {
|
|||
#ifdef _SC_PAGE_SIZE
|
||||
{"SC_PAGE_SIZE", _SC_PAGE_SIZE},
|
||||
#endif
|
||||
#ifdef _SC_AIX_REALMEM
|
||||
{"SC_AIX_REALMEM", _SC_AIX_REALMEM},
|
||||
#endif
|
||||
#ifdef _SC_PASS_MAX
|
||||
{"SC_PASS_MAX", _SC_PASS_MAX},
|
||||
#endif
|
||||
|
|
Loading…
Reference in New Issue