提交 b66681cd 编写于 作者: A Aaron Turon

Allow args to work without rt initialization

上级 74d07699
......@@ -702,11 +702,7 @@ fn real_args_as_bytes() -> Vec<Vec<u8>> {
target_os = "dragonfly"))]
fn real_args_as_bytes() -> Vec<Vec<u8>> {
use rt;
match rt::args::clone() {
Some(args) => args,
None => panic!("process arguments not initialized")
}
rt::args::clone().unwrap_or_else(|| vec![])
}
#[cfg(not(windows))]
......
......@@ -62,37 +62,33 @@ pub unsafe fn init(argc: int, argv: *const *const u8) {
}
pub unsafe fn cleanup() {
rtassert!(take().is_some());
take();
LOCK.destroy();
}
pub fn take() -> Option<Vec<Vec<u8>>> {
with_lock(|| unsafe {
let guard = LOCK.lock();
unsafe {
let ptr = get_global_ptr();
let val = mem::replace(&mut *ptr, None);
val.as_ref().map(|s: &Box<Vec<Vec<u8>>>| (**s).clone())
})
}
}
pub fn put(args: Vec<Vec<u8>>) {
with_lock(|| unsafe {
let guard = LOCK.lock();
unsafe {
let ptr = get_global_ptr();
rtassert!((*ptr).is_none());
(*ptr) = Some(box args.clone());
})
}
}
pub fn clone() -> Option<Vec<Vec<u8>>> {
with_lock(|| unsafe {
let guard = LOCK.lock();
unsafe {
let ptr = get_global_ptr();
(*ptr).as_ref().map(|s: &Box<Vec<Vec<u8>>>| (**s).clone())
})
}
fn with_lock<T, F>(f: F) -> T where F: FnOnce() -> T {
unsafe {
let _guard = LOCK.lock();
f()
}
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册