diff options
| author | bors <bors@rust-lang.org> | 2015-04-28 00:44:56 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2015-04-28 00:44:56 +0000 |
| commit | 2b8c9b12f91c0bf2c1e6278a5f803c2df3698432 (patch) | |
| tree | c50c1c6986dae1d4ae23335c43155888aacd8bc6 /src/libstd/thread | |
| parent | 97d4e76c20ec2e80affd100dd169155914370fd2 (diff) | |
| parent | d98ab4faf869ff0430ad73260b13ef8e473ef212 (diff) | |
| download | rust-2b8c9b12f91c0bf2c1e6278a5f803c2df3698432.tar.gz rust-2b8c9b12f91c0bf2c1e6278a5f803c2df3698432.zip | |
Auto merge of #24478 - alexcrichton:issue-24313, r=aturon
Inspecting the current thread's info may not always work due to the TLS value having been destroyed (or is actively being destroyed). The code for printing a panic message assumed, however, that it could acquire the thread's name through this method. Instead this commit propagates the `Option` outwards to allow the `std::panicking` module to handle the case where the current thread isn't present. While it solves the immediate issue of #24313, there is still another underlying issue of panicking destructors in thread locals will abort the process. Closes #24313
Diffstat (limited to 'src/libstd/thread')
| -rw-r--r-- | src/libstd/thread/local.rs | 24 | ||||
| -rw-r--r-- | src/libstd/thread/mod.rs | 4 |
2 files changed, 7 insertions, 21 deletions
diff --git a/src/libstd/thread/local.rs b/src/libstd/thread/local.rs index 6d8f1cba709..d028a169b64 100644 --- a/src/libstd/thread/local.rs +++ b/src/libstd/thread/local.rs @@ -18,7 +18,6 @@ use cell::UnsafeCell; // Sure wish we had macro hygiene, no? #[doc(hidden)] -#[unstable(feature = "thread_local_internals")] pub mod __impl { pub use super::imp::Key as KeyInner; pub use super::imp::destroy_value; @@ -78,12 +77,10 @@ pub struct LocalKey<T> { // This is trivially devirtualizable by LLVM because we never store anything // to this field and rustc can declare the `static` as constant as well. #[doc(hidden)] - #[unstable(feature = "thread_local_internals")] pub inner: fn() -> &'static __impl::KeyInner<UnsafeCell<Option<T>>>, // initialization routine to invoke to create a value #[doc(hidden)] - #[unstable(feature = "thread_local_internals")] pub init: fn() -> T, } @@ -297,6 +294,7 @@ impl<T: 'static> LocalKey<T> { } #[cfg(all(any(target_os = "macos", target_os = "linux"), not(target_arch = "aarch64")))] +#[doc(hidden)] mod imp { use prelude::v1::*; @@ -304,8 +302,6 @@ mod imp { use intrinsics; use ptr; - #[doc(hidden)] - #[unstable(feature = "thread_local_internals")] pub struct Key<T> { // Place the inner bits in an `UnsafeCell` to currently get around the // "only Sync statics" restriction. This allows any type to be placed in @@ -313,20 +309,16 @@ mod imp { // // Note that all access requires `T: 'static` so it can't be a type with // any borrowed pointers still. - #[unstable(feature = "thread_local_internals")] pub inner: UnsafeCell<T>, // Metadata to keep track of the state of the destructor. Remember that // these variables are thread-local, not global. - #[unstable(feature = "thread_local_internals")] pub dtor_registered: UnsafeCell<bool>, // should be Cell - #[unstable(feature = "thread_local_internals")] pub dtor_running: UnsafeCell<bool>, // should be Cell } unsafe impl<T> ::marker::Sync for Key<T> { } - #[doc(hidden)] impl<T> Key<T> { pub unsafe fn get(&'static self) -> Option<&'static T> { if intrinsics::needs_drop::<T>() && *self.dtor_running.get() { @@ -422,8 +414,6 @@ mod imp { _tlv_atexit(dtor, t); } - #[doc(hidden)] - #[unstable(feature = "thread_local_internals")] pub unsafe extern fn destroy_value<T>(ptr: *mut u8) { let ptr = ptr as *mut Key<T>; // Right before we run the user destructor be sure to flag the @@ -435,6 +425,7 @@ mod imp { } #[cfg(any(not(any(target_os = "macos", target_os = "linux")), target_arch = "aarch64"))] +#[doc(hidden)] mod imp { use prelude::v1::*; @@ -444,16 +435,12 @@ mod imp { use ptr; use sys_common::thread_local::StaticKey as OsStaticKey; - #[doc(hidden)] - #[unstable(feature = "thread_local_internals")] pub struct Key<T> { // Statically allocated initialization expression, using an `UnsafeCell` // for the same reasons as above. - #[unstable(feature = "thread_local_internals")] pub inner: UnsafeCell<T>, // OS-TLS key that we'll use to key off. - #[unstable(feature = "thread_local_internals")] pub os: OsStaticKey, } @@ -464,7 +451,6 @@ mod imp { value: T, } - #[doc(hidden)] impl<T> Key<T> { pub unsafe fn get(&'static self) -> Option<&'static T> { self.ptr().map(|p| &*p) @@ -489,14 +475,12 @@ mod imp { key: self, value: mem::transmute_copy(&self.inner), }; - let ptr: *mut Value<T> = boxed::into_raw(ptr); + let ptr = boxed::into_raw(ptr); self.os.set(ptr as *mut u8); Some(&mut (*ptr).value as *mut T) } } - #[doc(hidden)] - #[unstable(feature = "thread_local_internals")] pub unsafe extern fn destroy_value<T: 'static>(ptr: *mut u8) { // The OS TLS ensures that this key contains a NULL value when this // destructor starts to run. We set it back to a sentinel value of 1 to @@ -505,7 +489,7 @@ mod imp { // // Note that to prevent an infinite loop we reset it back to null right // before we return from the destructor ourselves. - let ptr: Box<Value<T>> = Box::from_raw(ptr as *mut Value<T>); + let ptr = Box::from_raw(ptr as *mut Value<T>); let key = ptr.key; key.os.set(1 as *mut u8); drop(ptr); diff --git a/src/libstd/thread/mod.rs b/src/libstd/thread/mod.rs index 383726b3e83..ce531fb1381 100644 --- a/src/libstd/thread/mod.rs +++ b/src/libstd/thread/mod.rs @@ -407,7 +407,9 @@ pub fn scoped<'a, T, F>(f: F) -> JoinGuard<'a, T> where /// Gets a handle to the thread that invokes it. #[stable(feature = "rust1", since = "1.0.0")] pub fn current() -> Thread { - thread_info::current_thread() + thread_info::current_thread().expect("use of std::thread::current() is not \ + possible after the thread's local \ + data has been destroyed") } /// Cooperatively gives up a timeslice to the OS scheduler. |
