bpo-40190: Add support for _SC_AIX_REALMEM in sysconf (GH-19380)

This commit is contained in:
Batuhan Taşkaya 2020-04-05 03:40:49 +03:00 committed by GitHub
parent 6fed3c8540
commit 909f4a3009
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 0 deletions

View File

@ -0,0 +1 @@
Add support for ``_SC_AIX_REALMEM`` to :func:`posix.sysconf`.

View File

@ -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