libfringe/src/arch/mod.rs

16 lines
708 B
Rust
Raw Normal View History

2015-04-16 20:06:57 +08:00
// This file is part of libfringe, a low-level green threading library.
// Copyright (c) edef <edef@edef.eu>,
// whitequark <whitequark@whitequark.org>
// Licensed under the Apache License, Version 2.0, <LICENSE-APACHE or
// http://apache.org/licenses/LICENSE-2.0> or the MIT license <LICENSE-MIT or
// http://opensource.org/licenses/MIT>, at your option. This file may not be
// copied, modified, or distributed except according to those terms.
2015-04-16 19:06:30 +08:00
pub use self::imp::*;
2015-04-17 00:50:15 +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")]
2016-08-19 03:35:30 +08:00
#[cfg_attr(target_arch = "or1k", path = "or1k.rs")]
2015-04-17 00:50:15 +08:00
mod imp;