Skip to content

Commit 909f4a3

Browse files
authored
bpo-40190: Add support for _SC_AIX_REALMEM in sysconf (GH-19380)
1 parent 6fed3c8 commit 909f4a3

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Add support for ``_SC_AIX_REALMEM`` to :func:`posix.sysconf`.

Modules/posixmodule.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11424,6 +11424,9 @@ static struct constdef posix_constants_sysconf[] = {
1142411424
#ifdef _SC_PAGE_SIZE
1142511425
{"SC_PAGE_SIZE", _SC_PAGE_SIZE},
1142611426
#endif
11427+
#ifdef _SC_AIX_REALMEM
11428+
{"SC_AIX_REALMEM", _SC_AIX_REALMEM},
11429+
#endif
1142711430
#ifdef _SC_PASS_MAX
1142811431
{"SC_PASS_MAX", _SC_PASS_MAX},
1142911432
#endif

0 commit comments

Comments
 (0)