28 lines
548 B
Rust
28 lines
548 B
Rust
use std;
|
|
import int;
|
|
import comm;
|
|
import task;
|
|
|
|
// We're trying to trigger a race between send and port destruction that
|
|
// results in the string not being freed
|
|
|
|
fn starship(&&ch: comm::Chan<~str>) {
|
|
for int::range(0, 10) |_i| {
|
|
comm::send(ch, ~"pew pew");
|
|
}
|
|
}
|
|
|
|
fn starbase() {
|
|
for int::range(0, 10) |_i| {
|
|
let p = comm::Port();
|
|
let c = comm::Chan(p);
|
|
task::spawn(|| starship(c) );
|
|
task::yield();
|
|
}
|
|
}
|
|
|
|
fn main() {
|
|
for int::range(0, 10) |_i| {
|
|
task::spawn(|| starbase() );
|
|
}
|
|
} |