diff options
| author | Brian Anderson <banderson@mozilla.com> | 2012-02-14 16:39:20 -0800 |
|---|---|---|
| committer | Brian Anderson <banderson@mozilla.com> | 2012-02-14 16:45:17 -0800 |
| commit | ff6b71f78bd00a93a91691bb297d6a379cdc50fa (patch) | |
| tree | 9c10da4361d5ca217ca510ec2d1887645c876a36 /src/libcore/core.rc | |
| parent | 859e0256524a1f19ca0c79f518d2bb396355f174 (diff) | |
| download | rust-ff6b71f78bd00a93a91691bb297d6a379cdc50fa.tar.gz rust-ff6b71f78bd00a93a91691bb297d6a379cdc50fa.zip | |
core: Add core::future
Futures will be required for upcoming changes to the task API
Diffstat (limited to 'src/libcore/core.rc')
| -rw-r--r-- | src/libcore/core.rc | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/libcore/core.rc b/src/libcore/core.rc index 181e54a95a4..868762a090f 100644 --- a/src/libcore/core.rc +++ b/src/libcore/core.rc @@ -80,9 +80,12 @@ mod math; mod cmath; mod sys; mod unsafe; +mod logging; + +// Concurrency mod comm; mod task; -mod logging; +mod future; // Compiler support modules |
