]> git.lizzy.rs Git - rust.git/blob - src/test/bench/silly-test-spawn.rs
fbd35c57adc7998985ea1cafdf4b5ee2cbf94a28
[rust.git] / src / test / bench / silly-test-spawn.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 // This is (hopefully) a quick test to get a good idea about spawning
12 // performance in libgreen. Note that this uses the rustuv event loop rather
13 // than the basic event loop in order to get a better real world idea about the
14 // performance of a task spawn.
15
16 extern crate green;
17 extern crate rustuv;
18
19 #[start]
20 fn start(argc: int, argv: **u8) -> int {
21     green::start(argc, argv, rustuv::event_loop, main)
22 }
23
24 fn main() {
25     for _ in range(1u32, 100_000) {
26         spawn(proc() {})
27     }
28 }