diff options
Diffstat (limited to 'src/libcore/rt/mod.rs')
| -rw-r--r-- | src/libcore/rt/mod.rs | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/src/libcore/rt/mod.rs b/src/libcore/rt/mod.rs index 37ac6ad3365..bda44b4c67f 100644 --- a/src/libcore/rt/mod.rs +++ b/src/libcore/rt/mod.rs @@ -85,10 +85,6 @@ pub mod uv; /// or task-local storage. pub mod local; -// FIXME #5248: The import in `sched` doesn't resolve unless this is pub! -/// Bindings to pthread/windows thread-local storage. -pub mod thread_local_storage; - /// A parallel work-stealing deque. mod work_queue; @@ -126,6 +122,15 @@ pub mod tube; /// Simple reimplementation of core::comm pub mod comm; +// FIXME #5248 shouldn't be pub +/// The runtime needs to be able to put a pointer into thread-local storage. +pub mod local_ptr; + +// FIXME #5248: The import in `sched` doesn't resolve unless this is pub! +/// Bindings to pthread/windows thread-local storage. +pub mod thread_local_storage; + + /// Set up a default runtime configuration, given compiler-supplied arguments. /// /// This is invoked by the `start` _language item_ (unstable::lang) to |
