Skip to content

Commit 69d2de2

Browse files
committed
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.
1 parent 089d160 commit 69d2de2

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Diff for: 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};
File renamed without changes.

0 commit comments

Comments
 (0)