blob: ecda7b23d7a4a6f14dec1a185446dbaf0542f531 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
/*
* bubbl
* Copyright (C) 2025 Raghuram Subramani <raghus2247@gmail.com>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef __common_h
#define __common_h
#define ALWAYS_INLINE __attribute__((always_inline)) inline
#define PACKED __attribute__((packed))
#define NORETURN __attribute__((noreturn))
#define ALIGNED(x) __attribute__((aligned(x)))
#define KiB 1024
#define MiB (KiB * KiB)
#define ASSERT_NOT_REACHED() \
{ \
printk("ASSERTION FAILED", \
"[%s]:%lu SHOULD NOT BE REACHED.", \
__func__, \
__LINE__); \
/* TODO: We should probably remove this exit() eventually */ \
exit(); \
halt(); \
}
#define ASSERT(condition) \
{ \
if (!(condition)) { \
printk("ASSERTION FAILED", \
"[%s]:%lu IS RENDERED FALSE.", \
__func__, \
__LINE__); \
/* TODO: We should probably remove this exit() eventually */ \
exit(); \
halt(); \
} \
}
#endif
|