Skip to content

Commit 481b31d

Browse files
Auto-format: cargo fmt --all
1 parent 874971c commit 481b31d

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

crates/vm/src/stdlib/posix.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -723,7 +723,9 @@ pub mod module {
723723
// BufferedReader/Writer/TextIOWrapper use PyThreadMutex which can be
724724
// held by dead parent threads, causing deadlocks on any IO in the child.
725725
#[cfg(feature = "threading")]
726-
unsafe { crate::stdlib::io::reinit_std_streams_after_fork(vm) };
726+
unsafe {
727+
crate::stdlib::io::reinit_std_streams_after_fork(vm)
728+
};
727729

728730
// Phase 2: Reset low-level atomic state (no locks needed).
729731
crate::signal::clear_after_fork();

0 commit comments

Comments
 (0)