summaryrefslogtreecommitdiffstats
path: root/Modules/posixmodule.c
diff options
context:
space:
mode:
authorVictor Stinner <vstinner@python.org>2022-03-11 22:01:40 (GMT)
committerGitHub <noreply@github.com>2022-03-11 22:01:40 (GMT)
commitdc374ac7b0fabaed49461a2044c220765f48d229 (patch)
tree43b51ddf143635a58e00734e787647048438ad32 /Modules/posixmodule.c
parent5b1b9eacb92dd47d10793a8868246df6ea477ed6 (diff)
downloadcpython-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.c3
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