summaryrefslogtreecommitdiff
path: root/firmware/kernel/kernel-internal.h
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/kernel/kernel-internal.h')
-rw-r--r--firmware/kernel/kernel-internal.h49
1 files changed, 49 insertions, 0 deletions
diff --git a/firmware/kernel/kernel-internal.h b/firmware/kernel/kernel-internal.h
new file mode 100644
index 0000000000..51c589ac8f
--- /dev/null
+++ b/firmware/kernel/kernel-internal.h
@@ -0,0 +1,49 @@
1/***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
9 *
10 * Copyright (C) 2002 by Ulf Ralberg
11 *
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
16 *
17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18 * KIND, either express or implied.
19 *
20 ****************************************************************************/
21
22#ifndef KERNEL_INTERNAL_H
23#define KERNEL_INTERNAL_H
24
25#include "config.h"
26#include "debug.h"
27
28/* Make this nonzero to enable more elaborate checks on objects */
29#if defined(DEBUG) || defined(SIMULATOR)
30#define KERNEL_OBJECT_CHECKS 1 /* Always 1 for DEBUG and sim*/
31#else
32#define KERNEL_OBJECT_CHECKS 0
33#endif
34
35#if KERNEL_OBJECT_CHECKS
36#ifdef SIMULATOR
37#include <stdlib.h>
38#define KERNEL_ASSERT(exp, msg...) \
39 ({ if (!({ exp; })) { DEBUGF(msg); exit(-1); } })
40#else
41#define KERNEL_ASSERT(exp, msg...) \
42 ({ if (!({ exp; })) panicf(msg); })
43#endif
44#else
45#define KERNEL_ASSERT(exp, msg...) ({})
46#endif
47
48
49#endif /* KERNEL_INTERNAL_H */