about summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
authorJethro Beekman <jethro@fortanix.com>2019-03-05 13:32:41 -0800
committerJethro Beekman <jethro@fortanix.com>2019-03-05 13:35:57 -0800
commit67eabc6bec67e1953cb944f0654fada3151b7e21 (patch)
treeb2a860fd1b21a7fd5a297d4939f755c7bbb31e8e /src/libstd
parentf22dca0a1bef4141e75326caacc3cd59f3d5be8e (diff)
downloadrust-67eabc6bec67e1953cb944f0654fada3151b7e21.tar.gz
rust-67eabc6bec67e1953cb944f0654fada3151b7e21.zip
SGX target: Expose thread id function in os module
Diffstat (limited to 'src/libstd')
-rw-r--r--src/libstd/os/fortanix_sgx/mod.rs5
-rw-r--r--src/libstd/sys/sgx/abi/thread.rs1
2 files changed, 6 insertions, 0 deletions
diff --git a/src/libstd/os/fortanix_sgx/mod.rs b/src/libstd/os/fortanix_sgx/mod.rs
index bca22e717d7..4e30b1edd15 100644
--- a/src/libstd/os/fortanix_sgx/mod.rs
+++ b/src/libstd/os/fortanix_sgx/mod.rs
@@ -43,3 +43,8 @@ pub mod mem {
 }
 
 pub use crate::sys::ext::{io, arch, ffi};
+
+/// Functions for querying thread-related information.
+pub mod thread {
+    pub use crate::sys::abi::thread::current;
+}
diff --git a/src/libstd/sys/sgx/abi/thread.rs b/src/libstd/sys/sgx/abi/thread.rs
index 86fe09d0035..c17fa2d0015 100644
--- a/src/libstd/sys/sgx/abi/thread.rs
+++ b/src/libstd/sys/sgx/abi/thread.rs
@@ -4,6 +4,7 @@ use fortanix_sgx_abi::Tcs;
 /// all currently running threads in the enclave, and it is guaranteed to be
 /// constant for the lifetime of the thread. More specifically for SGX, there
 /// is a one-to-one correspondence of the ID to the address of the TCS.
+#[unstable(feature = "sgx_platform", issue = "56975")]
 pub fn current() -> Tcs {
     extern "C" { fn get_tcs_addr() -> Tcs; }
     unsafe { get_tcs_addr() }