2015-04-16 18:17:03 +08:00
|
|
|
// Copyright (c) 2015, edef <edef@edef.eu>
|
|
|
|
// See the LICENSE file included in this distribution.
|
2015-04-16 19:06:30 +08:00
|
|
|
use core::prelude::*;
|
2015-04-16 18:34:03 +08:00
|
|
|
pub use self::imp::{Registers, STACK_ALIGN};
|
|
|
|
|
2015-04-16 19:06:30 +08:00
|
|
|
unsafe impl Send for Registers {}
|
|
|
|
|
2015-04-16 18:34:03 +08:00
|
|
|
mod common;
|
2015-04-16 18:17:03 +08:00
|
|
|
|
|
|
|
#[cfg(target_arch = "x86_64")]
|
|
|
|
#[path = "x86_64/mod.rs"]
|
|
|
|
mod imp;
|