diff options
| author | Aaron Turon <aturon@mozilla.com> | 2014-10-15 15:45:59 -0700 |
|---|---|---|
| committer | Aaron Turon <aturon@mozilla.com> | 2014-11-08 20:40:38 -0800 |
| commit | 3d195482a45bf3ed0f12dc9d70d14192262ca711 (patch) | |
| tree | d9cf1a93cc1e862e641cd17fdb41ebe93d22bfea /src/libstd/sys/common/net.rs | |
| parent | d34b1b0ca9bf5e0d7cd30952f5de0ab09ed57b41 (diff) | |
| download | rust-3d195482a45bf3ed0f12dc9d70d14192262ca711.tar.gz rust-3d195482a45bf3ed0f12dc9d70d14192262ca711.zip | |
Runtime removal: refactor helper threads
This patch continues the runtime removal by moving libnative::io::helper_thread into sys::helper_signal and sys_common::helper_thread Because this eliminates APIs in `libnative` and `librustrt`, it is a: [breaking-change] This functionality is likely to be available publicly, in some form, from `std` in the future.
Diffstat (limited to 'src/libstd/sys/common/net.rs')
| -rw-r--r-- | src/libstd/sys/common/net.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/libstd/sys/common/net.rs b/src/libstd/sys/common/net.rs index 0559005100f..7c44142d93c 100644 --- a/src/libstd/sys/common/net.rs +++ b/src/libstd/sys/common/net.rs @@ -24,6 +24,8 @@ use prelude::*; use cmp; use io; +// FIXME: move uses of Arc and deadline tracking to std::io + #[deriving(Show)] pub enum SocketStatus { Readable, |
