summaryrefslogtreecommitdiffstats
path: root/library/std/src/sys/windows/thread_local_dtor.rs
blob: cf542d2bfb83879664b314f6b4357fa2bb223d8c (plain)
1
2
3
4
5
6
7
//! Implements thread-local destructors that are not associated with any
//! particular data.

#![unstable(feature = "thread_local_internals", issue = "none")]
#![cfg(target_thread_local)]

pub use super::thread_local_key::register_keyless_dtor as register_dtor;