From e2104ecf9749a3091a7684f1a341bbe0391489b6 Mon Sep 17 00:00:00 2001 From: xiaosuGW Date: Mon, 4 Oct 2021 23:56:29 -0400 Subject: [PATCH] recover assert(\!listener_thread_is_running()) --- runtime/src/software_interrupt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime/src/software_interrupt.c b/runtime/src/software_interrupt.c index 5e30a88..05b4977 100644 --- a/runtime/src/software_interrupt.c +++ b/runtime/src/software_interrupt.c @@ -152,7 +152,7 @@ static inline void software_interrupt_handle_signals(int signal_type, siginfo_t *signal_info, void *user_context_raw) { /* Only workers should receive signals */ - //assert(!listener_thread_is_running()); + assert(!listener_thread_is_running()); /* Signals should be masked if runtime has disabled them */ /* This is not applicable anymore because the signal might be SIGINT */