mirror of
https://github.com/python/cpython.git
synced 2025-08-03 08:34:29 +00:00
bpo-40190: Add support for _SC_AIX_REALMEM in sysconf (GH-19380)
This commit is contained in:
parent
6fed3c8540
commit
909f4a3009
2 changed files with 4 additions and 0 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue