diff options
author | Batuhan Taşkaya <batuhanosmantaskaya@gmail.com> | 2020-04-05 00:40:49 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-05 00:40:49 (GMT) |
commit | 909f4a30093f74d409711e564f93a43167ca0919 (patch) | |
tree | e338770a028b6c08ffe66517ca6b45790f0a179b /Modules | |
parent | 6fed3c85402c5ca704eb3f3189ca3f5c67a08d19 (diff) | |
download | cpython-909f4a30093f74d409711e564f93a43167ca0919.zip cpython-909f4a30093f74d409711e564f93a43167ca0919.tar.gz cpython-909f4a30093f74d409711e564f93a43167ca0919.tar.bz2 |
bpo-40190: Add support for _SC_AIX_REALMEM in sysconf (GH-19380)
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/posixmodule.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c index 1adca8e..345798d 100644 --- a/Modules/posixmodule.c +++ b/Modules/posixmodule.c @@ -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 |