2012-02-15 03:16:53 -06:00
|
|
|
// This creates a bunch of yielding tasks that run concurrently
|
|
|
|
// while holding onto C stacks
|
|
|
|
|
2012-07-03 18:11:00 -05:00
|
|
|
extern mod rustrt {
|
2012-09-21 20:10:45 -05:00
|
|
|
#[legacy_exports];
|
2012-02-15 03:16:53 -06:00
|
|
|
fn rust_dbg_call(cb: *u8,
|
2012-03-12 22:04:27 -05:00
|
|
|
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() {
|
2012-07-04 14:04:28 -05:00
|
|
|
for iter::repeat(100u) {
|
|
|
|
do task::spawn {
|
2012-02-15 14:45:04 -06:00
|
|
|
assert count(5u) == 16u;
|
2012-02-15 03:16:53 -06:00
|
|
|
};
|
|
|
|
}
|
2012-07-04 14:04:28 -05:00
|
|
|
}
|