Skip to content

Commit 9a30e1b

Browse files
authored
Use a global lock for exit on unix.
1 parent 1138036 commit 9a30e1b

File tree

1 file changed

+7
-1
lines changed
  • library/std/src/sys/pal/unix

1 file changed

+7
-1
lines changed

library/std/src/sys/pal/unix/os.rs

+7-1
Original file line numberDiff line numberDiff line change
@@ -758,7 +758,13 @@ pub fn home_dir() -> Option<PathBuf> {
758758
}
759759

760760
pub fn exit(code: i32) -> ! {
761-
unsafe { libc::exit(code as c_int) }
761+
use crate::sync::OnceLock;
762+
// https://github.com/rust-lang/rust/issues/126600
763+
// Ensure that only one Rust thread calls exit.
764+
// Technically not enough to ensure soundness, since other code directly calling
765+
// libc::exit will still race with this.
766+
static EXIT_ONCE: OnceLock<!> = OnceLock::new();
767+
*EXIT_ONCE.get_or_init(|| unsafe { libc::exit(code as c_int) })
762768
}
763769

764770
pub fn getpid() -> u32 {

0 commit comments

Comments
 (0)