2010-08-11 21:23:34 -07:00
|
|
|
native "rust" mod rustrt {
|
2010-09-22 15:44:13 -07:00
|
|
|
fn task_sleep(uint time_in_us);
|
2011-05-31 17:44:54 -07:00
|
|
|
fn task_yield();
|
2011-06-13 18:19:08 -07:00
|
|
|
fn task_join(task t);
|
2011-07-14 17:56:59 -07:00
|
|
|
fn task_unsupervise();
|
2011-06-29 18:47:47 -07:00
|
|
|
fn pin_task();
|
|
|
|
fn unpin_task();
|
2010-08-11 21:23:34 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Hints the scheduler to yield this task for a specified ammount of time.
|
|
|
|
*
|
|
|
|
* arg: time_in_us maximum number of microseconds to yield control for
|
|
|
|
*/
|
|
|
|
fn sleep(uint time_in_us) {
|
2011-05-12 17:24:54 +02:00
|
|
|
ret rustrt::task_sleep(time_in_us);
|
2010-09-22 15:44:13 -07:00
|
|
|
}
|
|
|
|
|
2011-05-31 17:44:54 -07:00
|
|
|
fn yield() {
|
|
|
|
ret rustrt::task_yield();
|
|
|
|
}
|
|
|
|
|
|
|
|
fn join(task t) {
|
2011-06-13 18:19:08 -07:00
|
|
|
ret rustrt::task_join(t);
|
2011-05-31 17:44:54 -07:00
|
|
|
}
|
|
|
|
|
2011-07-14 17:56:59 -07:00
|
|
|
fn unsupervise() {
|
|
|
|
ret rustrt::task_unsupervise();
|
|
|
|
}
|
|
|
|
|
2011-06-29 18:47:47 -07:00
|
|
|
fn pin() {
|
|
|
|
rustrt::pin_task();
|
|
|
|
}
|
|
|
|
|
|
|
|
fn unpin() {
|
|
|
|
rustrt::unpin_task();
|
|
|
|
}
|
|
|
|
|
2010-09-22 15:44:13 -07:00
|
|
|
// Local Variables:
|
|
|
|
// mode: rust;
|
|
|
|
// fill-column: 78;
|
|
|
|
// indent-tabs-mode: nil
|
|
|
|
// c-basic-offset: 4
|
|
|
|
// buffer-file-coding-system: utf-8-unix
|
2011-06-15 12:01:19 -07:00
|
|
|
// compile-command: "make -k -C $RBUILD 2>&1 | sed -e 's/\\/x\\//x:\\//g'";
|
2010-09-22 15:44:13 -07:00
|
|
|
// End:
|