Skip to content

Commit 3e70e27

Browse files
committed
---
yaml --- r: 38755 b: refs/heads/incoming c: d29962f h: refs/heads/master i: 38753: 0e84b6b 38751: 311a76a v: v3
1 parent 34cdb2e commit 3e70e27

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
@@ -6,7 +6,7 @@ refs/heads/try: 3d5418789064fdb463e872a4e651af1c628a3650
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
88
refs/heads/try2: a810c03263670238bccd64cabb12a23a46e3a278
9-
refs/heads/incoming: f500f3f1fb4092bf7993170d755377268943e94b
9+
refs/heads/incoming: d29962f0eb2772c208a299efae86ad16bc25f7de
1010
refs/heads/dist-snap: 22efa39382d41b084fde1719df7ae8ce5697d8c9
1111
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596
1212
refs/tags/release-0.3: b5f0d0f648d9a6153664837026ba1be43d3e2503

branches/incoming/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/incoming/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/incoming/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/incoming/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/incoming/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/incoming/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/incoming/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)