]> git.lizzy.rs Git - rust.git/blob - src/test/bench/task-perf-spawnalot.rs
3a45e88b81ac132255d555379bddd21c05168830
[rust.git] / src / test / bench / task-perf-spawnalot.rs
1 // Copyright 2012 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 use std::os;
12 use std::task;
13 use std::uint;
14
15 fn f(n: uint) {
16     let mut i = 0u;
17     while i < n {
18         task::try(proc() g());
19         i += 1u;
20     }
21 }
22
23 fn g() { }
24
25 fn main() {
26     let args = os::args();
27     let args = if os::getenv("RUST_BENCH").is_some() {
28         vec!(~"", ~"400")
29     } else if args.len() <= 1u {
30         vec!(~"", ~"10")
31     } else {
32         args
33     };
34     let n = from_str::<uint>(args[1]).unwrap();
35     let mut i = 0u;
36     while i < n { task::spawn(proc() f(n) ); i += 1u; }
37 }