We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
exit
1 parent 1138036 commit 9a30e1bCopy full SHA for 9a30e1b
library/std/src/sys/pal/unix/os.rs
@@ -758,7 +758,13 @@ pub fn home_dir() -> Option<PathBuf> {
758
}
759
760
pub fn exit(code: i32) -> ! {
761
- unsafe { libc::exit(code as c_int) }
+ 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) })
768
769
770
pub fn getpid() -> u32 {
0 commit comments