sorted the extern crate, mod & use declarations

This commit is contained in:
Ravi Shankar 2015-09-24 02:12:45 +05:30
parent 705ad72aee
commit 889eec364b
194 changed files with 804 additions and 870 deletions

View file

@ -47,17 +47,15 @@
// FIXME: more than likely, more atomic operations than necessary use SeqCst
pub use self::Stolen::{Empty, Abort, Data};
use std::marker;
use std::mem::{forget, align_of, size_of, transmute};
use std::mem::{align_of, forget, size_of, transmute};
use std::ptr;
use alloc::heap::{allocate, deallocate};
use std::sync::Arc;
use std::sync::Mutex;
use std::sync::atomic::Ordering::{Relaxed, SeqCst};
use std::sync::atomic::{AtomicIsize, AtomicPtr};
pub use self::Stolen::{Abort, Data, Empty};
// Once the queue is less than 1/K full, then it will be downsized. Note that
// the deque requires that this number be less than 2.