Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions library/std/src/thread/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,10 @@
//! non-zero exit code.
//!
//! When the main thread of a Rust program terminates, the entire program shuts
//! down, even if other threads are still running. However, this module provides
//! convenient facilities for automatically waiting for the termination of a
//! thread (i.e., join).
//! down, even if other threads are still running, and any destructors on the
//! remaining threads' stacks may not be executed. However, this module
//! provides convenient facilities for automatically waiting for the
//! termination of a thread (i.e., join).
//!
//! ## Spawning a thread
//!
Expand Down
Loading