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

27 lines
572 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 {
2012-08-01 19:30:05 -05:00
return;
}
do task::task().sched_mode(task::platform_thread).unlinked().spawn {
task::yield();
do task::task().sched_mode(task::single_threaded).unlinked().spawn {
task::yield();
run(i - 1);
task::yield();
}
task::yield();
}
}