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

@ -335,6 +335,9 @@ pub mod signal;
/// 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;