summary refs log tree commit diff
path: root/src/test/bench/task-perf-spawnalot.rs
blob: ae247f1c54d6c026a31c0324ebde1581576a6389 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
use std;
import vec;
import task;
import uint;
import str;

fn f(&&n: uint) {
    let i = 0u;
    while i < n {
        task::join(task::spawn_joinable {|| g(); });
        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 {|| f(n); }; i += 1u; }
}