aboutsummaryrefslogtreecommitdiff
path: root/src/lib/libc/debug.c
blob: dc04fd3709aedfc197b6ecee5aa960ac18f623f5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#include <stdbool.h>

#include <kogata/debug.h>
#include <kogata/syscall.h>

void sys_panic(const char* msg, const char* file, int line) {
	dbg_printf("PANIC in user process\n  %s\n  at %s:%d\n", msg, file, line);
	exit(-1);
	while(true);
}

void sys_panic_assert(const char* assert, const char* file, int line) {
	dbg_printf("ASSERT FAILED in user process\n  %s\n   at %s:%d\n", assert, file, line);
	exit(-1);
	while(true);
}

/* vim: set ts=4 sw=4 tw=0 noet :*/