diff options
Diffstat (limited to 'components/util/workqueue.rs')
-rw-r--r-- | components/util/workqueue.rs | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/components/util/workqueue.rs b/components/util/workqueue.rs index d0899df1e61..0ffd50163e3 100644 --- a/components/util/workqueue.rs +++ b/components/util/workqueue.rs @@ -8,13 +8,12 @@ //! higher-level API on top of this could allow safe fork-join parallelism. use deque::{Abort, BufferPool, Data, Empty, Stealer, Worker}; -use task::spawn_named; -use task_state; - use libc::funcs::posix88::unistd::usleep; use rand::{Rng, weak_rng, XorShiftRng}; use std::sync::atomic::{AtomicUsize, Ordering}; use std::sync::mpsc::{channel, Sender, Receiver}; +use task::spawn_named; +use task_state; /// A unit of work. /// |