From 95f66ff22a56da402d7cb0dd9e26ffb4e9da60b9 Mon Sep 17 00:00:00 2001 From: Sean McBride Date: Tue, 14 Jul 2020 14:00:01 -0400 Subject: [PATCH] chore: remove overkill debuglog --- runtime/src/arch_context.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/runtime/src/arch_context.c b/runtime/src/arch_context.c index c6776e9..a1851a9 100644 --- a/runtime/src/arch_context.c +++ b/runtime/src/arch_context.c @@ -11,8 +11,6 @@ */ void __attribute__((noinline)) __attribute__((noreturn)) arch_context_mcontext_restore(void) { - debuglog("Thread %lu | Signaling SIGUSR1 on self to initiate mcontext restore...\n", pthread_self()); pthread_kill(pthread_self(), SIGUSR1); - - assert(false); /* should not get here.. */ + assert(false); }