mirror of
https://github.com/Leonmmcoset/cleonos.git
synced 2026-04-21 10:40:00 +00:00
11 lines
268 B
C
11 lines
268 B
C
#ifndef CLKS_PANIC_H
|
|
#define CLKS_PANIC_H
|
|
|
|
#include <clks/compiler.h>
|
|
#include <clks/types.h>
|
|
|
|
CLKS_NORETURN void clks_panic(const char *reason);
|
|
CLKS_NORETURN void clks_panic_exception(const char *name, u64 vector, u64 error_code, u64 rip, u64 rbp, u64 rsp);
|
|
|
|
#endif
|