Get comm_adapters building again

I accidentally removed this module from compilation awhile back, this adds it
back in.

Closes #11076
This commit is contained in:
Alex Crichton 2013-12-19 15:42:44 -08:00
parent 3906823765
commit f89b61ba3a
2 changed files with 5 additions and 2 deletions

View File

@ -38,7 +38,7 @@ pub struct PortReader {
}
impl PortReader {
pub fn new(port: Port<~[u8]>) -> PortReader<P> {
pub fn new(port: Port<~[u8]>) -> PortReader {
PortReader {
buf: None,
pos: 0,
@ -94,7 +94,7 @@ pub struct ChanWriter {
}
impl ChanWriter {
pub fn new(chan: C) -> ChanWriter<C> {
pub fn new(chan: Chan<~[u8]>) -> ChanWriter {
ChanWriter { chan: chan }
}
}

View File

@ -335,6 +335,9 @@
/// Utility implementations of Reader and Writer
pub mod util;
/// Adapatation of Chan/Port types to a Writer/Reader type.
pub mod comm_adapters;
/// The default buffer size for various I/O operations
static DEFAULT_BUF_SIZE: uint = 1024 * 64;