Skip to content

Commit e098d27

Browse files
committed
Move std::sys::sgx::ext to std::os::fortanix_sgx
1 parent 3edba7a commit e098d27

File tree

6 files changed

+4
-8
lines changed

6 files changed

+4
-8
lines changed

library/std/src/os/fortanix_sgx/mod.rs

+4-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
//! This includes functions to deal with memory isolation, usercalls, and the
44
//! SGX instruction set.
55
6-
#![deny(missing_docs, missing_debug_implementations)]
6+
#![deny(missing_docs)]
77
#![unstable(feature = "sgx_platform", issue = "56975")]
88

99
/// Low-level interfaces to usercalls. See the [ABI documentation] for more
@@ -43,7 +43,9 @@ pub mod mem {
4343
pub use crate::sys::abi::mem::*;
4444
}
4545

46-
pub use crate::sys::ext::{arch, ffi, io};
46+
pub mod arch;
47+
pub mod ffi;
48+
pub mod io;
4749

4850
/// Functions for querying thread-related information.
4951
pub mod thread {

library/std/src/sys/sgx/ext/mod.rs

-5
This file was deleted.

library/std/src/sys/sgx/mod.rs

-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ pub mod args;
1717
pub mod cmath;
1818
pub mod condvar;
1919
pub mod env;
20-
pub mod ext;
2120
pub mod fd;
2221
#[path = "../unsupported/fs.rs"]
2322
pub mod fs;

0 commit comments

Comments
 (0)