mobilecoinfoundation / sgx-std

Rust libstd functionality for SGX enclaves

Home Page:https://mobilecoin.foundation/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Logging Panic Handler (`mc-sgx-panic-log`)

nick-mobilecoin opened this issue · comments

  • #15
  • #21
  • #22
    • Should we derive ocall function signature from edl output? Captured in #52
  • #24
  • Use a static buffer for the panic stderr instead of allocating a String This will be handled in #29 done in #41
  • #48
    Re-evaluate the loop{} used for logging panic handler. Discussion from #41 (comment)
    The loop will keep the thread going indefinitely, but not actually stop it. The current implementation was modeled after, https://doc.rust-lang.org/nomicon/panic-handler.html, which doesn't seem to halt the thread, but more or less spins it off into oblivion.