{{ message }}
Fix stack overflow segfault on debug builds for Python threads#7986
Open
JamesClarke7283 wants to merge 5 commits into
Open
Fix stack overflow segfault on debug builds for Python threads#7986JamesClarke7283 wants to merge 5 commits into
JamesClarke7283 wants to merge 5 commits into
Conversation
Rust's std::thread::Builder defaults to a 2 MB stack when no size is
set, which is too small for the call chains the Python stdlib runs on
helper threads in debug builds (e.g. test.test_ssl's threaded server).
CPython on glibc Linux relies on pthread's ~8 MB default instead.
Apply 8 MB as the default in apply_thread_stack_size when the user has
not explicitly called threading.stack_size(N). This matches CPython's
effective default across builds while preserving the existing API:
threading.stack_size() still returns 0 by default ("platform default"),
and explicit user values still take precedence.
Fixes RustPython#7941
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
Contributor
Satisfy docstring coverage check on the PR. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
The previous commit applied an 8 MB default unconditionally, which slowed down multiprocessing tests on release: many forked children each spawning many threads with oversized virtual stack mappings caused the flaky MP CI step to time out (60 min, vs ~9 min on main). Issue RustPython#7941 only manifested in debug builds — release builds were already fine on Rust's 2 MB std default. Restrict the 8 MB override to `#[cfg(debug_assertions)]` so release behavior is unchanged from before the fix, while the original SSL segfault on debug stays fixed. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
Member
|
please also add failing test before patch |
This comment was marked as outdated.
This comment was marked as outdated.
Contributor
Author
Brings the branch up to date with main so CI job names match the required status checks (the windows snippets/cpython job was renamed by RustPython#8004 when its matrix skips were cleared). Also picks up RustPython#8018's _thread.rs stack-margin updates, which are orthogonal to the apply_thread_stack_size fix in this PR. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.

Summary
std::thread::Builderdefault stack of 2 MB, which is too small for the call chains the Python stdlib runs on helper threads in debug builds (where Rust stack frames are substantially larger). CPython on glibc Linux relies on pthread's ~8 MB default instead — a 4× difference that explains why this hits us but not CPython.apply_thread_stack_sizewhenever the user hasn't explicitly set a value viathreading.stack_size(N). This matches CPython's effective default while keeping the Python API contract exact:threading.stack_size()still returns0("platform default"), and explicit overrides still take precedence.crates/vm/src/stdlib/_thread.rs.Closes #7941
Test plan
cargo buildsucceeds.cargo run -- -m test.test_ssl ThreadedTests.test_socketserver→Ran 1 test in 21.59s, OK(was segfaulting onmain).threading.stack_size()returns0by default; setting to 1 MiB then reading back returns1048576; previous value reported correctly.🤖 Generated with Claude Code
Summary by CodeRabbit