Skip to content

Commit aa82f05

Browse files
committed
---
yaml --- r: 37371 b: refs/heads/try c: d29962f h: refs/heads/master i: 37369: 2da286d 37367: dee8e72 v: v3
1 parent 6be0210 commit aa82f05

File tree

9 files changed

+7
-9
lines changed

9 files changed

+7
-9
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
refs/heads/master: 09bb07bed9166105ea961a42b5fff7739ae0d2e9
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
44
refs/heads/snap-stage3: eb8fd119c65c67f3b1b8268cc7341c22d39b7b61
5-
refs/heads/try: f500f3f1fb4092bf7993170d755377268943e94b
5+
refs/heads/try: d29962f0eb2772c208a299efae86ad16bc25f7de
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
88
refs/heads/try2: a810c03263670238bccd64cabb12a23a46e3a278

branches/try/src/libcore/core.rc

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,6 @@ pub mod task {
181181
pub mod spawn;
182182
pub mod rt;
183183
}
184-
pub mod future;
185184
pub mod pipes;
186185

187186
// Runtime and language-primitive support

branches/try/src/libstd/std.rc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ pub mod cell;
5353
pub mod sync;
5454
pub mod arc;
5555
pub mod comm;
56+
pub mod future;
5657

5758
// Collections
5859

branches/try/src/rustdoc/markdown_writer.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
use doc::ItemUtils;
22
use io::ReaderUtil;
3+
use std::future;
34

45
export WriteInstr;
56
export Writer;

branches/try/src/test/bench/msgsend-ring-mutex-arcs.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,10 @@
77

88
// xfail-pretty
99

10-
use future::future;
11-
1210
extern mod std;
1311
use std::time;
1412
use std::arc;
13+
use std::future;
1514

1615
// A poor man's pipe.
1716
type pipe = arc::MutexARC<~[uint]>;

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,9 @@
88

99
// xfail-pretty
1010

11-
use future::future;
12-
1311
extern mod std;
1412
use std::time;
13+
use std::future;
1514

1615
use pipes::recv;
1716

branches/try/src/test/bench/msgsend-ring-rw-arcs.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,10 @@
77

88
// xfail-pretty
99

10-
use future::future;
11-
1210
extern mod std;
1311
use std::time;
1412
use std::arc;
13+
use std::future;
1514

1615
// A poor man's pipe.
1716
type pipe = arc::RWARC<~[uint]>;

branches/try/src/test/bench/msgsend-ring.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@
55
// message path.
66

77
use comm::*;
8-
use future::future;
98

109
extern mod std;
1110
use std::time;
11+
use std::future;
1212

1313
fn thread_ring(i: uint,
1414
count: uint,

0 commit comments

Comments
 (0)