1
Fork 0

core: Move unstable to unstable/mod.rs

This commit is contained in:
Brian Anderson 2013-05-09 16:33:41 -07:00
parent 1b883365bc
commit 4f44624415
2 changed files with 1 additions and 9 deletions

View file

@ -238,6 +238,7 @@ pub mod util;
/* Unsupported interfaces */ /* Unsupported interfaces */
// Private APIs // Private APIs
#[path = "unstable/mod.rs"]
pub mod unstable; pub mod unstable;
/* For internal use, not exported */ /* For internal use, not exported */

View file

@ -18,23 +18,14 @@ use task;
use task::atomically; use task::atomically;
use self::finally::Finally; use self::finally::Finally;
#[path = "unstable/at_exit.rs"]
pub mod at_exit; pub mod at_exit;
#[path = "unstable/global.rs"]
pub mod global; pub mod global;
#[path = "unstable/finally.rs"]
pub mod finally; pub mod finally;
#[path = "unstable/weak_task.rs"]
pub mod weak_task; pub mod weak_task;
#[path = "unstable/exchange_alloc.rs"]
pub mod exchange_alloc; pub mod exchange_alloc;
#[path = "unstable/intrinsics.rs"]
pub mod intrinsics; pub mod intrinsics;
#[path = "unstable/simd.rs"]
pub mod simd; pub mod simd;
#[path = "unstable/extfmt.rs"]
pub mod extfmt; pub mod extfmt;
#[path = "unstable/lang.rs"]
#[cfg(not(test))] #[cfg(not(test))]
pub mod lang; pub mod lang;