14 lines
244 B
C
14 lines
244 B
C
|
|
#ifndef KERNEL_PANIC_H_
|
||
|
|
#define KERNEL_PANIC_H_
|
||
|
|
|
||
|
|
#include <kernel/compiler.h>
|
||
|
|
|
||
|
|
struct ml_cpu_context;
|
||
|
|
|
||
|
|
#define panic(...) panic_irq(NULL, __VA_ARGS__)
|
||
|
|
|
||
|
|
extern void __noreturn
|
||
|
|
panic_irq(struct ml_cpu_context *ctx, const char *fmt, ...);
|
||
|
|
|
||
|
|
#endif
|