Move std::sys::sgx::ext to std::os::fortanix_sgx

This commit is contained in:
Christiaan Dirkx 2021-03-04 15:45:27 +01:00
parent 3edba7a806
commit e098d2730a
6 changed files with 4 additions and 8 deletions

View File

@ -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 {

View File

@ -1,5 +0,0 @@
#![unstable(feature = "sgx_platform", issue = "56975")]
pub mod arch;
pub mod ffi;
pub mod io;

View File

@ -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;