Enable simulation interrupt mode support

This commit is contained in:
zongmin.gu 2021-12-07 18:57:31 +08:00 committed by Zongmin.Gu
parent e8458bd27c
commit c58f61c56e

@ -18,14 +18,7 @@
// Type 1: a busy loop thread // Type 1: a busy loop thread
static void *busyloop_thread_func(void *_) { static void *busyloop_thread_func(void *_) {
// FIXME: Disable support for interrupting user code in simulation mode becase
// the interrupt signal is not handled well.
#ifdef SGX_MODE_SIM
printf("WARNING: Skip busyloop_thread_func case as we do not support "
"interrupting user code in SGX simulation mode\n");
#else
while (1) { } while (1) { }
#endif
return NULL; return NULL;
} }