From 022a9c513335dbe670ef3d050a8aca246af6fdb6 Mon Sep 17 00:00:00 2001 From: Sean McBride Date: Sat, 12 Dec 2020 12:58:20 -0500 Subject: [PATCH] chore: remove zombie error handling --- runtime/src/arch_context.c | 1 - 1 file changed, 1 deletion(-) diff --git a/runtime/src/arch_context.c b/runtime/src/arch_context.c index 5106b03..c20ff12 100644 --- a/runtime/src/arch_context.c +++ b/runtime/src/arch_context.c @@ -14,6 +14,5 @@ void __attribute__((noinline)) __attribute__((noreturn)) arch_context_restore_preempted(void) { pthread_kill(pthread_self(), SIGUSR1); - // if (unlikely(rc != 0)) panic("%s\n", strerror(rc)); panic("Unexpectedly reached code after sending self SIGUSR1\n"); }