2015-04-16 20:06:57 +08:00
|
|
|
// This file is part of libfringe, a low-level green threading library.
|
2016-07-16 09:22:41 +08:00
|
|
|
// Copyright (c) edef <edef@edef.eu>,
|
|
|
|
// whitequark <whitequark@whitequark.org>
|
2015-04-16 18:17:03 +08:00
|
|
|
// See the LICENSE file included in this distribution.
|
2015-04-16 19:06:30 +08:00
|
|
|
|
2016-08-11 09:34:53 +08:00
|
|
|
pub use self::imp::*;
|
2015-04-17 00:50:15 +08:00
|
|
|
|
2016-08-11 09:34:53 +08:00
|
|
|
#[allow(unused_attributes)] // rust-lang/rust#35584
|
|
|
|
#[cfg_attr(target_arch = "x86", path = "x86.rs")]
|
|
|
|
#[cfg_attr(target_arch = "x86_64", path = "x86_64.rs")]
|
2015-04-17 00:50:15 +08:00
|
|
|
mod imp;
|