diff options
author | Victor Stinner <vstinner@python.org> | 2022-03-11 22:01:40 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-11 22:01:40 (GMT) |
commit | dc374ac7b0fabaed49461a2044c220765f48d229 (patch) | |
tree | 43b51ddf143635a58e00734e787647048438ad32 /Modules/posixmodule.c | |
parent | 5b1b9eacb92dd47d10793a8868246df6ea477ed6 (diff) | |
download | cpython-dc374ac7b0fabaed49461a2044c220765f48d229.zip cpython-dc374ac7b0fabaed49461a2044c220765f48d229.tar.gz cpython-dc374ac7b0fabaed49461a2044c220765f48d229.tar.bz2 |
bpo-46968: Add os.sysconf_names['SC_MINSIGSTKSZ'] (GH-31824)
Diffstat (limited to 'Modules/posixmodule.c')
-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 3431c85..700cbd2 100644 --- a/Modules/posixmodule.c +++ b/Modules/posixmodule.c @@ -12346,6 +12346,9 @@ static struct constdef posix_constants_sysconf[] = { #ifdef _SC_XOPEN_XPG4 {"SC_XOPEN_XPG4", _SC_XOPEN_XPG4}, #endif +#ifdef _SC_MINSIGSTKSZ + {"SC_MINSIGSTKSZ", _SC_MINSIGSTKSZ}, +#endif }; static int |