]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/send-iloop.rs
e27f35d1851d52c743dab38ba5d78240113a62fb
[rust.git] / src / test / run-pass / send-iloop.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 // xfail-win32
12 extern mod extra;
13
14 use std::comm;
15 use std::task;
16
17 fn die() {
18     fail!();
19 }
20
21 fn iloop() {
22     task::spawn(|| die() );
23     let (p, c) = comm::stream::<()>();
24     loop {
25         // Sending and receiving here because these actions yield,
26         // at which point our child can kill us.
27         c.send(());
28         p.recv();
29         // The above comment no longer makes sense but I'm
30         // reluctant to remove a linked failure test case.
31         task::yield();
32     }
33 }
34
35 pub fn main() {
36     for _ in range(0u, 16u) {
37         task::spawn_unlinked(|| iloop() );
38     }
39 }