mirror of
https://github.com/python/cpython.git
synced 2025-11-03 03:22:27 +00:00
bpo-46968: Add os.sysconf_names['SC_MINSIGSTKSZ'] (GH-31824)
This commit is contained in:
parent
5b1b9eacb9
commit
dc374ac7b0
3 changed files with 7 additions and 0 deletions
|
|
@ -4755,6 +4755,9 @@ Miscellaneous System Information
|
||||||
|
|
||||||
.. availability:: Unix.
|
.. availability:: Unix.
|
||||||
|
|
||||||
|
.. versionchanged:: 3.11
|
||||||
|
Add ``'SC_MINSIGSTKSZ'`` name.
|
||||||
|
|
||||||
The following data values are used to support path manipulation operations. These
|
The following data values are used to support path manipulation operations. These
|
||||||
are defined for all platforms.
|
are defined for all platforms.
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1 @@
|
||||||
|
Add ``os.sysconf_names['SC_MINSIGSTKSZ']``.
|
||||||
|
|
@ -12346,6 +12346,9 @@ static struct constdef posix_constants_sysconf[] = {
|
||||||
#ifdef _SC_XOPEN_XPG4
|
#ifdef _SC_XOPEN_XPG4
|
||||||
{"SC_XOPEN_XPG4", _SC_XOPEN_XPG4},
|
{"SC_XOPEN_XPG4", _SC_XOPEN_XPG4},
|
||||||
#endif
|
#endif
|
||||||
|
#ifdef _SC_MINSIGSTKSZ
|
||||||
|
{"SC_MINSIGSTKSZ", _SC_MINSIGSTKSZ},
|
||||||
|
#endif
|
||||||
};
|
};
|
||||||
|
|
||||||
static int
|
static int
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue