We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 54567ef commit 6eef755Copy full SHA for 6eef755
library/std/src/thread/mod.rs
@@ -131,8 +131,8 @@
131
//!
132
//! * Build the thread with [`Builder`] and pass the desired stack size to [`Builder::stack_size`].
133
//! * Set the `RUST_MIN_STACK` environment variable to an integer representing the desired stack
134
-//! size (in bytes). Note that setting [`Builder::stack_size`] will override this. Also, note
135
-//! that `RUST_MIN_STACK` is cached internally so should be set before any threads are started.
+//! size (in bytes). Note that setting [`Builder::stack_size`] will override this. Be aware that
+//! changes to `RUST_MIN_STACK` may be ignored after program start.
136
137
//! Note that the stack size of the main thread is *not* determined by Rust.
138
0 commit comments