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:
parent
3906823765
commit
f89b61ba3a
@ -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 }
|
||||
}
|
||||
}
|
||||
|
@ -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;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user