Fallout from stabilization

This commit is contained in:
Aaron Turon 2015-02-17 15:10:25 -08:00
parent d8f8f7a58c
commit d0de2b46e9
89 changed files with 578 additions and 558 deletions

View file

@ -160,7 +160,7 @@ mod tests {
use sync::mpsc::channel;
use super::{Queue, Data, Empty, Inconsistent};
use sync::Arc;
use thread::Thread;
use thread;
#[test]
fn test_full() {
@ -184,7 +184,7 @@ mod tests {
for _ in 0..nthreads {
let tx = tx.clone();
let q = q.clone();
Thread::spawn(move|| {
thread::spawn(move|| {
for i in 0..nmsgs {
q.push(i);
}