remove a print in msgsend-ring-rw-arcs

This commit is contained in:
Ben Blum 2012-08-23 18:58:38 -04:00
parent f7f909a8cf
commit 79266c614d

View File

@ -25,7 +25,6 @@ fn send(p: &pipe, msg: uint) {
fn recv(p: &pipe) -> uint {
do p.write_cond |state, cond| {
while vec::is_empty(*state) {
error!("have to wait");
cond.wait();
}
vec::pop(*state)