rust/src/libstd/sys/common/thread_info.rs

66 lines
1.9 KiB
Rust
Raw Normal View History

// 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.
#![allow(dead_code)] // stack_guard isn't used right now on all platforms
2014-12-07 08:32:50 +00:00
use core::prelude::*;
use cell::RefCell;
use string::String;
use thread::Thread;
use thread::LocalKeyState;
2014-12-07 08:32:50 +00:00
struct ThreadInfo {
stack_guard: usize,
thread: Thread,
}
2014-12-19 03:41:20 +00:00
thread_local! { static THREAD_INFO: RefCell<Option<ThreadInfo>> = RefCell::new(None) }
impl ThreadInfo {
fn with<R, F>(f: F) -> R where F: FnOnce(&mut ThreadInfo) -> R {
if THREAD_INFO.state() == LocalKeyState::Destroyed {
2015-02-17 23:10:25 +00:00
panic!("Use of std::thread::current() is not possible after \
the thread's local data has been destroyed");
}
THREAD_INFO.with(move |c| {
if c.borrow().is_none() {
*c.borrow_mut() = Some(ThreadInfo {
stack_guard: 0,
2014-12-07 02:34:37 +00:00
thread: NewThread::new(None),
})
}
2014-12-07 02:34:37 +00:00
f(c.borrow_mut().as_mut().unwrap())
})
}
}
pub fn current_thread() -> Thread {
ThreadInfo::with(|info| info.thread.clone())
}
pub fn stack_guard() -> usize {
2014-12-07 08:32:50 +00:00
ThreadInfo::with(|info| info.stack_guard)
}
pub fn set(stack_guard: usize, thread: Thread) {
THREAD_INFO.with(|c| assert!(c.borrow().is_none()));
THREAD_INFO.with(move |c| *c.borrow_mut() = Some(ThreadInfo{
stack_guard: stack_guard,
thread: thread,
}));
}
2015-02-17 23:10:25 +00:00
// a hack to get around privacy restrictions; implemented by `std::thread`
pub trait NewThread {
fn new(name: Option<String>) -> Self;
}