Skip to content

Commit 95a092e

Browse files
authored
Unrolled build for rust-lang#116172
Rollup merge of rust-lang#116172 - joboet:recursive_tls_initialization, r=dtolnay Broaden the consequences of recursive TLS initialization This PR updates the documentation of `LocalKey` to clearly disallow the behaviour described in [this comment](rust-lang#110897 (comment)). This allows using `OnceCell` for the lazy initialization of TLS variables, which panics on reentrant initialization instead of updating the value like TLS variables currently do. ``@rustbot`` label +T-libs-api r? ``@m-ou-se``
2 parents f70779b + 559ec69 commit 95a092e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

library/std/src/thread/local.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,9 @@ use crate::fmt;
2929
/// within a thread, and values that implement [`Drop`] get destructed when a
3030
/// thread exits. Some caveats apply, which are explained below.
3131
///
32-
/// A `LocalKey`'s initializer cannot recursively depend on itself, and using
33-
/// a `LocalKey` in this way will cause the initializer to infinitely recurse
34-
/// on the first call to `with`.
32+
/// A `LocalKey`'s initializer cannot recursively depend on itself. Using a
33+
/// `LocalKey` in this way may cause panics, aborts or infinite recursion on
34+
/// the first call to `with`.
3535
///
3636
/// # Examples
3737
///

0 commit comments

Comments
 (0)