rust/src/test/bench/task-perf-spawnalot.rs

23 lines
424 B
Rust
Raw Normal View History

use std;
2011-08-15 16:38:23 -07:00
import std::vec;
import std::task;
import std::uint;
import std::str;
fn f(n: uint) {
let i = 0u;
while i < n { let thunk = g; task::join_id(task::spawn(thunk)); i += 1u; }
}
fn g() { }
fn main(args: [str]) {
let n =
if vec::len(args) < 2u {
10u
} else { uint::parse_buf(str::bytes(args[1]), 10u) };
let i = 0u;
while i < n { task::spawn(bind f(n)); i += 1u; }
}