mirror of
https://github.com/servo/servo.git
synced 2025-08-03 04:30:10 +01:00
sorted the extern crate, mod & use declarations
This commit is contained in:
parent
705ad72aee
commit
889eec364b
194 changed files with 804 additions and 870 deletions
|
@ -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.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue