2012-02-07 19:43:54 -06:00
|
|
|
// Tests of the runtime's scheduler interface
|
|
|
|
|
|
|
|
type sched_id = int;
|
|
|
|
type task_id = int;
|
|
|
|
|
2012-03-12 22:04:27 -05:00
|
|
|
type task = *libc::c_void;
|
|
|
|
type closure = *libc::c_void;
|
2012-02-07 19:43:54 -06:00
|
|
|
|
|
|
|
native mod rustrt {
|
2012-02-07 20:34:04 -06:00
|
|
|
fn rust_new_sched(num_threads: uint) -> sched_id;
|
2012-02-07 19:43:54 -06:00
|
|
|
fn rust_get_sched_id() -> sched_id;
|
|
|
|
fn rust_new_task_in_sched(id: sched_id) -> task_id;
|
|
|
|
fn start_task(id: task_id, f: closure);
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() unsafe {
|
|
|
|
let po = comm::port();
|
|
|
|
let ch = comm::chan(po);
|
|
|
|
let parent_sched_id = rustrt::rust_get_sched_id();
|
|
|
|
#error("parent %?", parent_sched_id);
|
|
|
|
let num_threads = 1u;
|
|
|
|
let new_sched_id = rustrt::rust_new_sched(num_threads);
|
|
|
|
#error("new_sched_id %?", new_sched_id);
|
|
|
|
let new_task_id = rustrt::rust_new_task_in_sched(new_sched_id);
|
2012-06-28 18:01:55 -05:00
|
|
|
assert !new_task_id.is_null();
|
2012-02-07 19:43:54 -06:00
|
|
|
let f = fn~() {
|
|
|
|
let child_sched_id = rustrt::rust_get_sched_id();
|
|
|
|
#error("child_sched_id %?", child_sched_id);
|
|
|
|
assert child_sched_id != parent_sched_id;
|
|
|
|
assert child_sched_id == new_sched_id;
|
|
|
|
comm::send(ch, ());
|
|
|
|
};
|
|
|
|
let fptr = unsafe::reinterpret_cast(ptr::addr_of(f));
|
|
|
|
rustrt::start_task(new_task_id, fptr);
|
2012-03-20 17:12:30 -05:00
|
|
|
unsafe::forget(f);
|
2012-02-07 19:43:54 -06:00
|
|
|
comm::recv(po);
|
2012-06-28 18:01:55 -05:00
|
|
|
}
|