From 33653c8a80561cd7563ee1b2c4ce67c106624cc3 Mon Sep 17 00:00:00 2001 From: Akash Levy Date: Thu, 23 Jan 2025 14:51:40 -0800 Subject: [PATCH] Don't SIGABRT on failure --- kernel/log.h | 1 - 1 file changed, 1 deletion(-) diff --git a/kernel/log.h b/kernel/log.h index 3229ae353..88e809eaf 100644 --- a/kernel/log.h +++ b/kernel/log.h @@ -223,7 +223,6 @@ static inline void log_assert_worker(bool cond, const char *expr, const char *fi if (!cond) { log("ERROR: Assert `%s' failed in %s:%d.\n", expr, file, line); log_flush(); - raise(SIGABRT); } } #ifndef NDEBUG