diff options
author | Ronald Oussoren <ronaldoussoren@mac.com> | 2019-08-01 05:43:07 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-08-01 05:43:07 (GMT) |
commit | 1a057bab0f18d6ad843ce321d1d77a4819497ae4 (patch) | |
tree | 4018de28edc28e3bcd8564de6d790b7ad4384bbb /Misc | |
parent | ed5e8e06cbf766e89d6c58a882ee024abb5b2ed7 (diff) | |
download | cpython-1a057bab0f18d6ad843ce321d1d77a4819497ae4.zip cpython-1a057bab0f18d6ad843ce321d1d77a4819497ae4.tar.gz cpython-1a057bab0f18d6ad843ce321d1d77a4819497ae4.tar.bz2 |
bpo-18049: Sync thread stack size to main thread size on macOS (GH-14748)
This changeset increases the default size of the stack
for threads on macOS to the size of the stack
of the main thread and reenables the relevant
recursion test.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/macOS/2019-07-13-15-58-18.bpo-18049.MklhQQ.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/macOS/2019-07-13-15-58-18.bpo-18049.MklhQQ.rst b/Misc/NEWS.d/next/macOS/2019-07-13-15-58-18.bpo-18049.MklhQQ.rst new file mode 100644 index 0000000..5af07cd --- /dev/null +++ b/Misc/NEWS.d/next/macOS/2019-07-13-15-58-18.bpo-18049.MklhQQ.rst @@ -0,0 +1,3 @@ +Increase the default stack size of threads from 5MB to 16MB on macOS, to +match the stack size of the main thread. This avoids crashes on deep recursion +in threads. |