rust/src/test/run-pass/osmain.rs

27 lines
560 B
Rust
Raw Normal View History

// Jump back and forth between the OS main thread and a new scheduler.
// The OS main scheduler should continue to be available and not terminate
// while it is not in use.
fn main() {
2012-04-03 19:39:35 -05:00
run(100);
}
fn run(i: int) {
log(debug, i);
if i == 0 {
ret;
}
do task::task().sched_mode(task::osmain).unlinked().spawn {
task::yield();
do task::task().sched_mode(task::single_threaded).unlinked().spawn {
task::yield();
run(i - 1);
task::yield();
}
task::yield();
}
}