We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9d2d632 commit 50e7423Copy full SHA for 50e7423
[refs]
@@ -1,2 +1,2 @@
1
---
2
-refs/heads/master: b8fcf0ab0ec5993981cc07fdb110f5a3db988a2b
+refs/heads/master: 2511299024fcf15d8febe98869c1523771a990e3
trunk/src/test/run-pass/send-iloop.rs
@@ -14,7 +14,10 @@ fn iloop(&&_i: ()) {
14
let p = comm::port::<()>();
15
let c = comm::chan(p);
16
while true {
17
+ // Sending and receiving here because these actions yield,
18
+ // at which point our child can kill us
19
comm::send(c, ());
20
+ comm::recv(p);
21
}
22
23
0 commit comments