Skip to content

Commit d7a854b

Browse files
committed
---
yaml --- r: 29799 b: refs/heads/incoming c: 9600744 h: refs/heads/master i: 29797: 4786571 29795: 129567a 29791: ab7b60c v: v3
1 parent f3102b6 commit d7a854b

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ refs/heads/try: d324a424d8f84b1eb049b12cf34182bda91b0024
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
88
refs/heads/try2: d0c6ce338884ee21843f4b40bf6bf18d222ce5df
9-
refs/heads/incoming: 9c034464fee35d526369c4eccb8ac32244c52411
9+
refs/heads/incoming: 96007441e16559c3259cf94e29857c01452c51a6
1010
refs/heads/dist-snap: 2f32a1581f522e524009138b33b1c7049ced668d
1111
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596
1212
refs/tags/release-0.3: b5f0d0f648d9a6153664837026ba1be43d3e2503

branches/incoming/src/test/bench/msgsend-pipes-shared.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ fn run(args: &[~str]) {
7171
server(from_parent, to_parent);
7272
}
7373

74-
vec::iter(worker_results, |r| { future::get(r); } );
74+
vec::iter(worker_results, |r| { future::get(&r); } );
7575
//error!{"sending stop message"};
7676
to_child.send(stop);
7777
move_out!{to_child};

branches/incoming/src/test/bench/msgsend-pipes.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ fn run(args: &[~str]) {
6868
server(from_parent, to_parent);
6969
}
7070

71-
vec::iter(worker_results, |r| { future::get(r); } );
71+
vec::iter(worker_results, |r| { future::get(&r); } );
7272
//error!{"sending stop message"};
7373
to_child.send(stop);
7474
move_out!{to_child};

branches/incoming/src/test/bench/msgsend-ring-pipes.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ fn main(args: ~[~str]) {
9494
thread_ring(0u, msg_per_task, option::unwrap(num_chan), num_port);
9595

9696
// synchronize
97-
for futures.each |f| { future::get(f) };
97+
for futures.each |f| { future::get(&f) };
9898

9999
let stop = time::precise_time_s();
100100

branches/incoming/src/test/bench/msgsend.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ fn run(args: ~[~str]) {
4444
}
4545
};
4646
}
47-
vec::iter(worker_results, |r| { future::get(r); } );
47+
vec::iter(worker_results, |r| { future::get(&r); } );
4848
comm::send(to_child, stop);
4949
let result = comm::recv(from_child);
5050
let end = std::time::precise_time_s();

branches/incoming/src/test/bench/shootout-pfib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ fn stress(num_tasks: int) {
7676
stress_task(i);
7777
}
7878
}
79-
for results.each |r| { future::get(r); }
79+
for results.each |r| { future::get(&r); }
8080
}
8181

8282
fn main(args: ~[~str]) {

branches/incoming/src/test/bench/task-perf-linked-failure.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ fn spawn_supervised_blocking(myname: &str, +f: fn~()) {
3333
let mut res = none;
3434
task::task().future_result(|+r| res = some(r)).supervised().spawn(f);
3535
#error["%s group waiting", myname];
36-
let x = future::get(option::unwrap(res));
36+
let x = future::get(&option::unwrap(res));
3737
assert x == task::success;
3838
}
3939

0 commit comments

Comments
 (0)