diff options
| author | Ben Blum <bblum@andrew.cmu.edu> | 2013-07-18 20:34:42 -0400 |
|---|---|---|
| committer | Ben Blum <bblum@andrew.cmu.edu> | 2013-07-30 13:19:25 -0400 |
| commit | f34fadd126ce9ffcd5a79c3ad5d06ad58c6fd8a8 (patch) | |
| tree | e8c622fc282ac880f718375d235feb7090424bff /src/libstd/rt/mod.rs | |
| parent | 7326bc879ed6d9def8a128a2586a6f1708b5010c (diff) | |
| download | rust-f34fadd126ce9ffcd5a79c3ad5d06ad58c6fd8a8.tar.gz rust-f34fadd126ce9ffcd5a79c3ad5d06ad58c6fd8a8.zip | |
Implement select() for new runtime pipes.
Diffstat (limited to 'src/libstd/rt/mod.rs')
| -rw-r--r-- | src/libstd/rt/mod.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/libstd/rt/mod.rs b/src/libstd/rt/mod.rs index 808d07ce77d..2ca7d01da49 100644 --- a/src/libstd/rt/mod.rs +++ b/src/libstd/rt/mod.rs @@ -142,6 +142,9 @@ pub mod tube; /// Simple reimplementation of core::comm pub mod comm; +/// Routines for select()ing on pipes. +pub mod select; + // FIXME #5248 shouldn't be pub /// The runtime needs to be able to put a pointer into thread-local storage. pub mod local_ptr; |
