This is an automated email from the ASF dual-hosted git repository. dingyu pushed a commit to branch sgx2.8_patch in repository https://gitbox.apache.org/repos/asf/incubator-teaclave-sgx-sdk.git
commit 83f4b63f996167783d6e5346d22ec4914581e2c6 Author: Yu Ding <[email protected]> AuthorDate: Mon Jan 20 18:00:01 2020 -0800 Patch sgx_trts to support Intel SGX v2.8 suite --- sgx_trts/src/enclave.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/sgx_trts/src/enclave.rs b/sgx_trts/src/enclave.rs index 15d4c56..05aae88 100644 --- a/sgx_trts/src/enclave.rs +++ b/sgx_trts/src/enclave.rs @@ -43,7 +43,9 @@ pub struct global_data_t { pub heap_size: usize, pub rsrv_offset: usize, pub rsrv_size: usize, + pub rsrv_executable: usize, pub thread_policy: usize, + pub tcs_max_num: usize, pub td_template: thread_data_t, pub tcs_template: [u8; TCS_TEMPLATE_SIZE], // 72 pub layout_entry_num: u32, @@ -488,4 +490,4 @@ pub fn rsgx_is_supported_EDMM() -> bool { #[inline] pub fn rsgx_get_cpu_feature() -> u64 { unsafe { g_cpu_feature_indicator } -} \ No newline at end of file +} --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
