From d2f9e17c8633fd440236e0349cba4095e48b3b6f Mon Sep 17 00:00:00 2001 From: apio Date: Sun, 2 Oct 2022 18:16:27 +0200 Subject: [PATCH] Use __luna_abort in init --- apps/src/init.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/apps/src/init.c b/apps/src/init.c index 435f3c84..94aeb2eb 100644 --- a/apps/src/init.c +++ b/apps/src/init.c @@ -15,8 +15,7 @@ int main() { if (gettid() == 0) // why are we the idle task? { - println("SHENANIGANS! init is tid 0 (which is reserved for the idle task)"); - abort(); + __luna_abort("SHENANIGANS! init is tid 0 (which is reserved for the idle task)\n"); } println("Welcome to Luna from a C init!");