Files
rust/library/std/src/sys_common/thread_info.rs

48 lines
1.4 KiB
Rust
Raw Normal View History

#![allow(dead_code)] // stack_guard isn't used right now on all platforms
2019-02-11 04:23:21 +09:00
use crate::cell::RefCell;
use crate::sys::thread::guard::Guard;
use crate::thread::Thread;
2014-12-07 00:32:50 -08:00
struct ThreadInfo {
stack_guard: Option<Guard>,
thread: Thread,
}
2014-12-18 19:41:20 -08:00
thread_local! { static THREAD_INFO: RefCell<Option<ThreadInfo>> = RefCell::new(None) }
impl ThreadInfo {
fn with<R, F>(f: F) -> Option<R>
where
F: FnOnce(&mut ThreadInfo) -> R,
{
THREAD_INFO
.try_with(move |thread_info| {
let mut thread_info = thread_info.borrow_mut();
let thread_info = thread_info.get_or_insert_with(|| ThreadInfo {
stack_guard: None,
thread: Thread::new(None),
});
f(thread_info)
})
.ok()
}
}
pub fn current_thread() -> Option<Thread> {
ThreadInfo::with(|info| info.thread.clone())
}
pub fn stack_guard() -> Option<Guard> {
ThreadInfo::with(|info| info.stack_guard.clone()).and_then(|o| o)
2014-12-07 00:32:50 -08:00
}
pub fn set(stack_guard: Option<Guard>, thread: Thread) {
THREAD_INFO.with(|c| assert!(c.borrow().is_none()));
THREAD_INFO.with(move |c| *c.borrow_mut() = Some(ThreadInfo { stack_guard, thread }));
}
pub fn reset_guard(stack_guard: Option<Guard>) {
THREAD_INFO.with(move |c| c.borrow_mut().as_mut().unwrap().stack_guard = stack_guard);
}