Skip to content

Commit 527725b

Browse files
authored
Rollup merge of rust-lang#139121 - thaliaarchi:rename-thread_local-statik, r=Noratrieb
Rename internal module from `statik` to `no_threads` This module is named in reference to the keyword, but the term is somewhat overloaded. Rename it to more clearly describe it and avoid the misspelling.
2 parents 6d88291 + 9b889e9 commit 527725b

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

library/std/src/sys/thread_local/mod.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@ cfg_if::cfg_if! {
3030
target_os = "zkvm",
3131
target_os = "trusty",
3232
))] {
33-
mod statik;
34-
pub use statik::{EagerStorage, LazyStorage, thread_local_inner};
35-
pub(crate) use statik::{LocalPointer, local_pointer};
33+
mod no_threads;
34+
pub use no_threads::{EagerStorage, LazyStorage, thread_local_inner};
35+
pub(crate) use no_threads::{LocalPointer, local_pointer};
3636
} else if #[cfg(target_thread_local)] {
3737
mod native;
3838
pub use native::{EagerStorage, LazyStorage, thread_local_inner};

0 commit comments

Comments
 (0)