Rename alloc::arc to alloc::sync, to match std::sync

This commit is contained in:
Simon Sapin
2018-06-15 04:07:09 +02:00
parent 3394fb7bb7
commit c7638edf52
4 changed files with 4 additions and 4 deletions

View File

@@ -18,10 +18,10 @@ pub use self::if_arc::*;
#[cfg(target_has_atomic = "ptr")]
mod if_arc {
use super::*;
use arc::Arc;
use core::marker::PhantomData;
use core::mem;
use core::ptr::{self, NonNull};
use sync::Arc;
/// A way of waking up a specific task.
///