forked from M-Labs/libfringe
e290a8bbaf
the latest Rust nightly makes this unnecessary
17 lines
376 B
Rust
17 lines
376 B
Rust
// 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.
|
|
pub use self::imp::Registers;
|
|
|
|
unsafe impl Send for Registers {}
|
|
|
|
mod common;
|
|
|
|
#[cfg(target_arch = "x86_64")]
|
|
#[path = "x86_64/mod.rs"]
|
|
mod imp;
|
|
|
|
#[cfg(target_arch = "x86")]
|
|
#[path = "x86/mod.rs"]
|
|
mod imp;
|