mirror of
https://github.com/rust-lang/rust.git
synced 2025-04-28 02:57:37 +00:00
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.
This commit is contained in:
parent
d4812c8638
commit
9b889e9198
@ -30,9 +30,9 @@ cfg_if::cfg_if! {
|
||||
target_os = "zkvm",
|
||||
target_os = "trusty",
|
||||
))] {
|
||||
mod statik;
|
||||
pub use statik::{EagerStorage, LazyStorage, thread_local_inner};
|
||||
pub(crate) use statik::{LocalPointer, local_pointer};
|
||||
mod no_threads;
|
||||
pub use no_threads::{EagerStorage, LazyStorage, thread_local_inner};
|
||||
pub(crate) use no_threads::{LocalPointer, local_pointer};
|
||||
} else if #[cfg(target_thread_local)] {
|
||||
mod native;
|
||||
pub use native::{EagerStorage, LazyStorage, thread_local_inner};
|
||||
|
Loading…
Reference in New Issue
Block a user