mirror of
https://github.com/rust-lang/rust.git
synced 2025-02-11 14:33:32 +00:00
Move std::sys::sgx::ext
to std::os::fortanix_sgx
This commit is contained in:
parent
3edba7a806
commit
e098d2730a
@ -3,7 +3,7 @@
|
||||
//! This includes functions to deal with memory isolation, usercalls, and the
|
||||
//! SGX instruction set.
|
||||
|
||||
#![deny(missing_docs, missing_debug_implementations)]
|
||||
#![deny(missing_docs)]
|
||||
#![unstable(feature = "sgx_platform", issue = "56975")]
|
||||
|
||||
/// Low-level interfaces to usercalls. See the [ABI documentation] for more
|
||||
@ -43,7 +43,9 @@ pub mod mem {
|
||||
pub use crate::sys::abi::mem::*;
|
||||
}
|
||||
|
||||
pub use crate::sys::ext::{arch, ffi, io};
|
||||
pub mod arch;
|
||||
pub mod ffi;
|
||||
pub mod io;
|
||||
|
||||
/// Functions for querying thread-related information.
|
||||
pub mod thread {
|
||||
|
@ -1,5 +0,0 @@
|
||||
#![unstable(feature = "sgx_platform", issue = "56975")]
|
||||
|
||||
pub mod arch;
|
||||
pub mod ffi;
|
||||
pub mod io;
|
@ -17,7 +17,6 @@ pub mod args;
|
||||
pub mod cmath;
|
||||
pub mod condvar;
|
||||
pub mod env;
|
||||
pub mod ext;
|
||||
pub mod fd;
|
||||
#[path = "../unsupported/fs.rs"]
|
||||
pub mod fs;
|
||||
|
Loading…
Reference in New Issue
Block a user