2014-11-25 16:52:10 +00:00
|
|
|
// Copyright 2014 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
2015-03-10 03:04:35 +00:00
|
|
|
#![allow(dead_code)] // stack_guard isn't used right now on all platforms
|
|
|
|
|
2014-12-07 08:32:50 +00:00
|
|
|
use cell::RefCell;
|
2014-12-30 23:20:47 +00:00
|
|
|
use thread::Thread;
|
2015-03-20 07:46:13 +00:00
|
|
|
use thread::LocalKeyState;
|
2014-12-07 08:32:50 +00:00
|
|
|
|
2014-11-25 16:52:10 +00:00
|
|
|
struct ThreadInfo {
|
2015-07-16 18:59:53 +00:00
|
|
|
stack_guard: Option<usize>,
|
2014-11-25 16:52:10 +00:00
|
|
|
thread: Thread,
|
|
|
|
}
|
|
|
|
|
2014-12-19 03:41:20 +00:00
|
|
|
thread_local! { static THREAD_INFO: RefCell<Option<ThreadInfo>> = RefCell::new(None) }
|
2014-11-25 16:52:10 +00:00
|
|
|
|
|
|
|
impl ThreadInfo {
|
2015-04-15 19:27:05 +00:00
|
|
|
fn with<R, F>(f: F) -> Option<R> where F: FnOnce(&mut ThreadInfo) -> R {
|
2015-03-20 07:46:13 +00:00
|
|
|
if THREAD_INFO.state() == LocalKeyState::Destroyed {
|
2015-04-15 19:27:05 +00:00
|
|
|
return None
|
2014-12-14 08:05:32 +00:00
|
|
|
}
|
|
|
|
|
2014-12-30 23:05:17 +00:00
|
|
|
THREAD_INFO.with(move |c| {
|
2014-11-25 16:52:10 +00:00
|
|
|
if c.borrow().is_none() {
|
|
|
|
*c.borrow_mut() = Some(ThreadInfo {
|
2015-07-16 18:59:53 +00:00
|
|
|
stack_guard: None,
|
2017-03-14 01:42:23 +00:00
|
|
|
thread: Thread::new(None),
|
2014-11-25 16:52:10 +00:00
|
|
|
})
|
|
|
|
}
|
2015-04-15 19:27:05 +00:00
|
|
|
Some(f(c.borrow_mut().as_mut().unwrap()))
|
2014-11-25 16:52:10 +00:00
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-04-15 19:27:05 +00:00
|
|
|
pub fn current_thread() -> Option<Thread> {
|
2014-11-25 16:52:10 +00:00
|
|
|
ThreadInfo::with(|info| info.thread.clone())
|
|
|
|
}
|
|
|
|
|
2015-04-15 19:27:05 +00:00
|
|
|
pub fn stack_guard() -> Option<usize> {
|
2015-07-16 18:59:53 +00:00
|
|
|
ThreadInfo::with(|info| info.stack_guard).and_then(|o| o)
|
2014-12-07 08:32:50 +00:00
|
|
|
}
|
|
|
|
|
2015-07-16 18:59:53 +00:00
|
|
|
pub fn set(stack_guard: Option<usize>, thread: Thread) {
|
2014-11-25 16:52:10 +00:00
|
|
|
THREAD_INFO.with(|c| assert!(c.borrow().is_none()));
|
2014-12-10 15:49:45 +00:00
|
|
|
THREAD_INFO.with(move |c| *c.borrow_mut() = Some(ThreadInfo{
|
2014-11-25 16:52:10 +00:00
|
|
|
stack_guard: stack_guard,
|
2014-12-10 15:49:45 +00:00
|
|
|
thread: thread,
|
2014-11-25 16:52:10 +00:00
|
|
|
}));
|
|
|
|
}
|