summaryrefslogtreecommitdiff
path: root/src/kernel/panic.h
blob: 1e25a835fddb22fcfe2b80f98ecedc6d134e40ba (plain)
1
2
3
4
5
6
7
8
9
10
#pragma once
#include <kernel/arch/generic.h>
#include <kernel/util.h>

#define panic() do { \
	tty_const(" PANIC! at the "); \
	tty_const(__func__); \
	tty_const(" (" __FILE__ ":" NUM2STR(__LINE__) ") "); \
	halt_cpu(); \
} while (0)