core::atomic -> core::sync::atomic

master
edef 2015-08-26 00:20:23 +02:00
parent e290a8bbaf
commit c83143511e
1 changed files with 1 additions and 1 deletions

View File

@ -1,7 +1,7 @@
// This file is part of libfringe, a low-level green threading library.
// Copyright (c) 2015, edef <edef@edef.eu>
// See the LICENSE file included in this distribution.
use core::atomic::{ATOMIC_USIZE_INIT, AtomicUsize, Ordering};
use core::sync::atomic::{ATOMIC_USIZE_INIT, AtomicUsize, Ordering};
pub use self::imp::{map_stack, protect_stack, unmap_stack};
use self::imp::sys_page_size;