Cthulhu  0.2.10
Cthulhu compiler collection
panic.c
Go to the documentation of this file.
1 // SPDX-License-Identifier: LGPL-3.0-only
2 
3 #include "base/panic.h"
4 
6 
8 void ctu_panic(source_info_t location, const char *msg, ...)
9 {
10  // todo: figure out a nice way to handle assertions that assert themselves
11  // we want to catch that and print a nice message rather than overflowing the stack.
12  // but i cant think of any way of doing it that would work with green threads (where thread_local doesnt work)
13  va_list args;
14  va_start(args, msg);
15  ctu_vpanic(location, msg, args);
16 }
17 
19 void ctu_vpanic(source_info_t location, const char *msg, va_list args)
20 {
21  gPanicHandler(location, msg, args);
23 }
#define STA_DECL
sal2 annotation on function implementations to copy annotations from the declaration
#define CT_UNREACHABLE()
mark a point in code as unreachable
Definition: compiler.h:102
panic_handler_t gPanicHandler
the global panic handler.
Definition: panic.c:5
void(* panic_handler_t)(source_info_t location, STA_FORMAT_STRING const char *fmt, va_list args)
panic handler function
Definition: panic.h:40
STA_DECL void ctu_vpanic(source_info_t location, const char *msg, va_list args)
Definition: panic.c:19
STA_DECL void ctu_panic(source_info_t location, const char *msg,...)
Definition: panic.c:8
panic location information
Definition: source_info.h:26