summary refs log tree commit diff
path: root/src/libstd/rt/mod.rs
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2013-10-29 14:14:34 -0700
committerAlex Crichton <alex@alexcrichton.com>2013-10-29 15:56:16 -0700
commite203f30bc743ff3de271d8db80acd21991e903df (patch)
tree0715830a57d2924ae41537b243024eb5e836976d /src/libstd/rt/mod.rs
parent886819cca1208210cb73892f8fe4b7b9140068dc (diff)
downloadrust-e203f30bc743ff3de271d8db80acd21991e903df.tar.gz
rust-e203f30bc743ff3de271d8db80acd21991e903df.zip
Register new snapshots
Diffstat (limited to 'src/libstd/rt/mod.rs')
-rw-r--r--src/libstd/rt/mod.rs11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/libstd/rt/mod.rs b/src/libstd/rt/mod.rs
index d8d07f14021..a247b4afb80 100644
--- a/src/libstd/rt/mod.rs
+++ b/src/libstd/rt/mod.rs
@@ -121,10 +121,6 @@ pub mod io;
 /// The EventLoop and internal synchronous I/O interface.
 pub mod rtio;
 
-/// libuv and default rtio implementation.
-#[cfg(stage0)]
-pub mod uv;
-
 /// The Local trait for types that are accessible via thread-local
 /// or task-local storage.
 pub mod local;
@@ -463,13 +459,6 @@ pub fn in_green_task_context() -> bool {
     }
 }
 
-#[cfg(stage0)]
-pub fn new_event_loop() -> ~rtio::EventLoop {
-    use rt::uv::uvio::UvEventLoop;
-    ~UvEventLoop::new() as ~rtio::EventLoop
-}
-
-#[cfg(not(stage0))]
 pub fn new_event_loop() -> ~rtio::EventLoop {
     #[fixed_stack_segment]; #[allow(cstack)];