2011-12-13 18:25:51 -06:00
|
|
|
/*
|
|
|
|
Module: sys
|
|
|
|
|
|
|
|
Misc low level stuff
|
|
|
|
*/
|
|
|
|
tag type_desc = {
|
|
|
|
first_param: **ctypes::c_int,
|
|
|
|
size: ctypes::size_t,
|
|
|
|
align: ctypes::size_t
|
|
|
|
// Remaining fields not listed
|
|
|
|
};
|
|
|
|
|
|
|
|
#[abi = "cdecl"]
|
|
|
|
native mod rustrt {
|
|
|
|
// Explicitly re-export native stuff we want to be made
|
|
|
|
// available outside this crate. Otherwise it's
|
|
|
|
// visible-in-crate, but not re-exported.
|
|
|
|
fn last_os_error() -> str;
|
|
|
|
fn refcount<T>(t: @T) -> uint;
|
|
|
|
fn do_gc();
|
|
|
|
fn unsupervise();
|
2012-01-11 11:09:46 -06:00
|
|
|
fn shape_log_str<T>(t: *sys::type_desc, data: T) -> str;
|
2012-01-13 00:17:21 -06:00
|
|
|
fn rust_set_exit_status(code: int);
|
2012-01-14 21:21:23 -06:00
|
|
|
fn set_min_stack(size: uint);
|
2011-12-13 18:25:51 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
#[abi = "rust-intrinsic"]
|
|
|
|
native mod rusti {
|
|
|
|
fn get_type_desc<T>() -> *type_desc;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
Function: get_type_desc
|
|
|
|
|
|
|
|
Returns a pointer to a type descriptor. Useful for calling certain
|
|
|
|
function in the Rust runtime or otherwise performing dark magick.
|
|
|
|
*/
|
|
|
|
fn get_type_desc<T>() -> *type_desc {
|
|
|
|
ret rusti::get_type_desc::<T>();
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
Function: last_os_error
|
|
|
|
|
|
|
|
Get a string representing the platform-dependent last error
|
|
|
|
*/
|
|
|
|
fn last_os_error() -> str {
|
2011-12-16 10:38:49 -06:00
|
|
|
rustrt::last_os_error()
|
2011-12-13 18:25:51 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
Function: size_of
|
|
|
|
|
|
|
|
Returns the size of a type
|
|
|
|
*/
|
|
|
|
fn size_of<T>() -> uint unsafe {
|
|
|
|
ret (*get_type_desc::<T>()).size;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
Function: align_of
|
|
|
|
|
|
|
|
Returns the alignment of a type
|
|
|
|
*/
|
|
|
|
fn align_of<T>() -> uint unsafe {
|
|
|
|
ret (*get_type_desc::<T>()).align;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
Function: refcount
|
|
|
|
|
|
|
|
Returns the refcount of a shared box
|
|
|
|
*/
|
|
|
|
fn refcount<T>(t: @T) -> uint {
|
|
|
|
ret rustrt::refcount::<T>(t);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
Function: do_gc
|
|
|
|
|
|
|
|
Force a garbage collection
|
|
|
|
*/
|
|
|
|
fn do_gc() -> () {
|
|
|
|
ret rustrt::do_gc();
|
|
|
|
}
|
|
|
|
|
|
|
|
// FIXME: There's a wrapper for this in the task module and this really
|
|
|
|
// just belongs there
|
|
|
|
fn unsupervise() -> () {
|
|
|
|
ret rustrt::unsupervise();
|
|
|
|
}
|
|
|
|
|
2012-01-11 11:09:46 -06:00
|
|
|
fn log_str<T>(t: T) -> str {
|
|
|
|
rustrt::shape_log_str(get_type_desc::<T>(), t)
|
|
|
|
}
|
|
|
|
|
2012-01-13 00:17:21 -06:00
|
|
|
#[doc(
|
|
|
|
brief = "Sets the process exit code",
|
|
|
|
desc = "Sets the exit code returned by the process if all supervised \
|
|
|
|
tasks terminate successfully (without failing). If the current \
|
|
|
|
root task fails and is supervised by the scheduler then any \
|
|
|
|
user-specified exit status is ignored and the process exits \
|
|
|
|
with the default failure status."
|
|
|
|
)]
|
|
|
|
fn set_exit_status(code: int) {
|
|
|
|
rustrt::rust_set_exit_status(code);
|
|
|
|
}
|
|
|
|
|
2012-01-14 21:21:23 -06:00
|
|
|
// FIXME: #1495 - This shouldn't exist
|
|
|
|
#[doc(
|
|
|
|
brief =
|
|
|
|
"Globally set the minimum size, in bytes, of a stack segment",
|
|
|
|
desc =
|
|
|
|
"Rust tasks have segmented stacks that are connected in a linked list \
|
|
|
|
allowing them to start very small and grow very large. In some \
|
|
|
|
situations this can result in poor performance. Calling this function \
|
|
|
|
will set the minimum size of all stack segments allocated in the \
|
|
|
|
future, for all tasks."
|
|
|
|
)]
|
|
|
|
#[deprecated]
|
|
|
|
fn set_min_stack(size: uint) {
|
|
|
|
rustrt::set_min_stack(size);
|
|
|
|
}
|
|
|
|
|
2011-12-13 18:25:51 -06:00
|
|
|
// Local Variables:
|
|
|
|
// mode: rust;
|
|
|
|
// fill-column: 78;
|
|
|
|
// indent-tabs-mode: nil
|
|
|
|
// c-basic-offset: 4
|
|
|
|
// buffer-file-coding-system: utf-8-unix
|
|
|
|
// End:
|