From c83143511efe1297c7f85c9ca0d69762b1614f29 Mon Sep 17 00:00:00 2001 From: edef Date: Wed, 26 Aug 2015 00:20:23 +0200 Subject: [PATCH] core::atomic -> core::sync::atomic --- src/os/sys/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/os/sys/mod.rs b/src/os/sys/mod.rs index 5894e84..860ae96 100644 --- a/src/os/sys/mod.rs +++ b/src/os/sys/mod.rs @@ -1,7 +1,7 @@ // This file is part of libfringe, a low-level green threading library. // Copyright (c) 2015, edef // 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;