We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 874971c commit 481b31dCopy full SHA for 481b31d
crates/vm/src/stdlib/posix.rs
@@ -723,7 +723,9 @@ pub mod module {
723
// BufferedReader/Writer/TextIOWrapper use PyThreadMutex which can be
724
// held by dead parent threads, causing deadlocks on any IO in the child.
725
#[cfg(feature = "threading")]
726
- unsafe { crate::stdlib::io::reinit_std_streams_after_fork(vm) };
+ unsafe {
727
+ crate::stdlib::io::reinit_std_streams_after_fork(vm)
728
+ };
729
730
// Phase 2: Reset low-level atomic state (no locks needed).
731
crate::signal::clear_after_fork();
0 commit comments