2014-11-25 10:52:10 -06: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.
|
|
|
|
|
2014-12-07 02:32:50 -06:00
|
|
|
use core::prelude::*;
|
|
|
|
|
|
|
|
use thread::Thread;
|
|
|
|
use cell::RefCell;
|
|
|
|
use string::String;
|
|
|
|
|
2014-11-25 10:52:10 -06:00
|
|
|
struct ThreadInfo {
|
|
|
|
// This field holds the known bounds of the stack in (lo, hi)
|
|
|
|
// form. Not all threads necessarily know their precise bounds,
|
|
|
|
// hence this is optional.
|
|
|
|
stack_bounds: (uint, uint),
|
|
|
|
stack_guard: uint,
|
2014-12-07 02:32:50 -06:00
|
|
|
unwinding: bool,
|
2014-11-25 10:52:10 -06:00
|
|
|
thread: Thread,
|
|
|
|
}
|
|
|
|
|
2014-12-07 02:32:50 -06:00
|
|
|
thread_local!(static THREAD_INFO: RefCell<Option<ThreadInfo>> = RefCell::new(None))
|
2014-11-25 10:52:10 -06:00
|
|
|
|
|
|
|
impl ThreadInfo {
|
2014-12-07 02:32:50 -06:00
|
|
|
fn with<R>(f: |&mut ThreadInfo| -> R) -> R {
|
2014-11-25 10:52:10 -06:00
|
|
|
THREAD_INFO.with(|c| {
|
|
|
|
if c.borrow().is_none() {
|
|
|
|
*c.borrow_mut() = Some(ThreadInfo {
|
|
|
|
stack_bounds: (0, 0),
|
|
|
|
stack_guard: 0,
|
2014-12-06 20:34:37 -06:00
|
|
|
unwinding: false,
|
|
|
|
thread: NewThread::new(None),
|
2014-11-25 10:52:10 -06:00
|
|
|
})
|
|
|
|
}
|
2014-12-06 20:34:37 -06:00
|
|
|
f(c.borrow_mut().as_mut().unwrap())
|
2014-11-25 10:52:10 -06:00
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn current_thread() -> Thread {
|
|
|
|
ThreadInfo::with(|info| info.thread.clone())
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn panicking() -> bool {
|
2014-12-06 20:34:37 -06:00
|
|
|
ThreadInfo::with(|info| info.unwinding)
|
2014-11-25 10:52:10 -06:00
|
|
|
}
|
|
|
|
|
2014-12-07 02:32:50 -06:00
|
|
|
pub fn stack_guard() -> uint {
|
|
|
|
ThreadInfo::with(|info| info.stack_guard)
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn set_unwinding(unwinding: bool) {
|
|
|
|
ThreadInfo::with(|info| info.unwinding = unwinding)
|
|
|
|
}
|
|
|
|
|
2014-11-25 10:52:10 -06:00
|
|
|
pub fn set(stack_bounds: (uint, uint), stack_guard: uint, thread: Thread) {
|
|
|
|
THREAD_INFO.with(|c| assert!(c.borrow().is_none()));
|
2014-12-10 09:49:45 -06:00
|
|
|
THREAD_INFO.with(move |c| *c.borrow_mut() = Some(ThreadInfo{
|
2014-11-25 10:52:10 -06:00
|
|
|
stack_bounds: stack_bounds,
|
|
|
|
stack_guard: stack_guard,
|
2014-12-07 02:32:50 -06:00
|
|
|
unwinding: false,
|
2014-12-10 09:49:45 -06:00
|
|
|
thread: thread,
|
2014-11-25 10:52:10 -06:00
|
|
|
}));
|
|
|
|
}
|
|
|
|
|
|
|
|
// a hack to get around privacy restrictions; implemented by `std::thread::Thread`
|
|
|
|
pub trait NewThread {
|
|
|
|
fn new(name: Option<String>) -> Self;
|
|
|
|
}
|