rust/src/test/bench/task-perf-vector-party.rs

26 lines
659 B
Rust
Raw Normal View History

// Vectors are allocated in the Rust kernel's memory region, use of
// which requires some amount of synchronization. This test exercises
// that synchronization by spawning a number of tasks and then
// allocating and freeing vectors.
use std;
import std::vec;
import std::uint;
import std::str;
import std::task;
fn# f(&&n: uint) {
for each i in uint::range(0u, n) {
let v: [u8] = [];
vec::reserve(v, 1000u);
}
}
2011-09-02 17:34:58 -05:00
fn main(args: [str]) {
let n =
if vec::len(args) < 2u {
100u
} else { uint::parse_buf(str::bytes(args[1]), 10u) };
for each i in uint::range(0u, 100u) { task::spawn(copy n, f); }
2011-09-02 17:34:58 -05:00
}