aboutsummaryrefslogtreecommitdiff
path: root/src/test/run-pass
diff options
context:
space:
mode:
authorMichael Bebenita <[email protected]>2010-09-07 23:37:51 -0700
committerMichael Bebenita <[email protected]>2010-09-07 23:37:51 -0700
commit7f6d8b95bd3340ea5fa32874243dac036208105b (patch)
tree7010caf355578adc06a0919df97b0418683ba41f /src/test/run-pass
parentLots of design changes around proxies and message passing. Made it so that do... (diff)
downloadrust-7f6d8b95bd3340ea5fa32874243dac036208105b.tar.xz
rust-7f6d8b95bd3340ea5fa32874243dac036208105b.zip
Fixed race in the rust kernel.
Diffstat (limited to 'src/test/run-pass')
-rw-r--r--src/test/run-pass/task-comm-9.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/test/run-pass/task-comm-9.rs b/src/test/run-pass/task-comm-9.rs
index e6ca84f5..a2c9d5c9 100644
--- a/src/test/run-pass/task-comm-9.rs
+++ b/src/test/run-pass/task-comm-9.rs
@@ -16,7 +16,8 @@ io fn test00() {
let port[int] p = port();
let int number_of_messages = 10;
- let task t0 = spawn thread test00_start(chan(p), number_of_messages);
+ let task t0 = spawn thread "child"
+ test00_start(chan(p), number_of_messages);
let int i = 0;
while (i < number_of_messages) {