aboutsummaryrefslogtreecommitdiff
path: root/libs/libc/inc/assert.h
blob: ed835c58c6f6af5ce1ad29c381b438aa42900f72 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// MIT License, Copyright (c) 2020 Marvin Borner

#ifndef ASSERT_H
#define ASSERT_H

#include <print.h>

#ifdef kernel
#include <proc.h>
#define assert(exp)                                                                                \
	if (!(exp)) {                                                                              \
		printf("%s:%d: %s: Kernel assertion '%s' failed\n", __FILE__, __LINE__, __func__,  \
		       #exp);                                                                      \
		__asm__ volatile("cli\nhlt");                                                      \
	}
#elif defined(userspace)
#define assert(exp)                                                                                \
	if (!(exp))                                                                                \
		err(1, "%s:%d: %s: Assertion '%s' failed\n", __FILE__, __LINE__, __func__, #exp);
#else
#error "No lib target specified. Please use -Dkernel or -Duserspace"
#endif

#endif