rust/src/test/run-pass/extern-stress.rs

30 lines
601 B
Rust
Raw Normal View History

2012-02-15 03:16:53 -06:00
// This creates a bunch of yielding tasks that run concurrently
// while holding onto C stacks
extern mod rustrt {
#[legacy_exports];
2012-02-15 03:16:53 -06:00
fn rust_dbg_call(cb: *u8,
data: libc::uintptr_t) -> libc::uintptr_t;
2012-02-15 03:16:53 -06:00
}
2012-07-03 18:32:02 -05:00
extern fn cb(data: libc::uintptr_t) -> libc::uintptr_t {
2012-02-15 03:16:53 -06:00
if data == 1u {
data
} else {
task::yield();
count(data - 1u) + count(data - 1u)
}
}
fn count(n: uint) -> uint {
rustrt::rust_dbg_call(cb, n)
}
fn main() {
for iter::repeat(100u) {
do task::spawn {
assert count(5u) == 16u;
2012-02-15 03:16:53 -06:00
};
}
}