2002-07-09 12:24:59 +00:00
|
|
|
/*
|
2007-07-23 00:59:30 +00:00
|
|
|
* Copyright 2002-2007, Axel Dörfler, axeld@pinc-software.de
|
2005-05-29 13:01:38 +00:00
|
|
|
* Distributed under the terms of the Haiku License.
|
|
|
|
*
|
|
|
|
* Copyright 2001-2002, Travis Geiselbrecht. All rights reserved.
|
|
|
|
* Distributed under the terms of the NewOS License.
|
|
|
|
*/
|
2002-07-09 12:24:59 +00:00
|
|
|
#ifndef _KERNEL_DEBUG_H
|
|
|
|
#define _KERNEL_DEBUG_H
|
|
|
|
|
2003-05-03 16:03:26 +00:00
|
|
|
|
2004-05-18 09:42:13 +00:00
|
|
|
#include <OS.h>
|
2003-05-03 16:03:26 +00:00
|
|
|
|
2007-07-23 00:59:30 +00:00
|
|
|
#define KDEBUG 1
|
2003-11-11 04:01:31 +00:00
|
|
|
|
2005-05-29 13:01:38 +00:00
|
|
|
#if DEBUG
|
2007-06-21 05:37:46 +00:00
|
|
|
/*
|
|
|
|
* The kernel debug level.
|
|
|
|
* Level 1 is usual asserts, > 1 should be used for very expensive runtime checks
|
|
|
|
*/
|
|
|
|
#define KDEBUG 1
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#define ASSERT_ALWAYS(x) \
|
|
|
|
do { if (!(x)) { panic("ASSERT FAILED (%s:%d): %s\n", __FILE__, __LINE__, #x); } } while (0)
|
|
|
|
|
2007-08-06 17:35:57 +00:00
|
|
|
#define ASSERT_ALWAYS_PRINT(x, format...) \
|
|
|
|
do { \
|
|
|
|
if (!(x)) { \
|
|
|
|
dprintf(format); \
|
|
|
|
panic("ASSERT FAILED (%s:%d): %s\n", __FILE__, __LINE__, #x); \
|
|
|
|
} \
|
|
|
|
} while (0)
|
|
|
|
|
2007-06-21 05:37:46 +00:00
|
|
|
#if KDEBUG
|
2007-08-06 17:35:57 +00:00
|
|
|
# define ASSERT(x) ASSERT_ALWAYS(x)
|
|
|
|
# define ASSERT_PRINT(x, format...) ASSERT_ALWAYS_PRINT(x, format)
|
2002-07-18 18:45:07 +00:00
|
|
|
#else
|
2007-08-06 17:35:57 +00:00
|
|
|
# define ASSERT(x) do { } while(0)
|
|
|
|
# define ASSERT_PRINT(x, format...) do { } while(0)
|
2002-07-09 12:24:59 +00:00
|
|
|
#endif
|
2002-07-18 18:45:07 +00:00
|
|
|
|
2004-05-18 09:42:13 +00:00
|
|
|
extern int dbg_register_file[B_MAX_CPU_COUNT][14];
|
2005-05-29 13:01:38 +00:00
|
|
|
|
2003-11-13 22:07:36 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2007-06-21 05:37:46 +00:00
|
|
|
struct kernel_args;
|
|
|
|
|
2004-10-21 01:41:29 +00:00
|
|
|
extern status_t debug_init(struct kernel_args *args);
|
|
|
|
extern status_t debug_init_post_vm(struct kernel_args *args);
|
2005-12-13 00:06:52 +00:00
|
|
|
extern status_t debug_init_post_modules(struct kernel_args *args);
|
2005-05-29 13:01:38 +00:00
|
|
|
extern void debug_early_boot_message(const char *string);
|
2006-04-03 20:48:30 +00:00
|
|
|
extern void debug_puts(const char *s, int32 length);
|
2005-08-21 23:27:51 +00:00
|
|
|
extern bool debug_debugger_running(void);
|
2006-01-25 16:12:10 +00:00
|
|
|
extern void debug_stop_screen_debug_output(void);
|
2003-11-13 22:07:36 +00:00
|
|
|
|
|
|
|
extern void _user_debug_output(const char *userString);
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2002-07-18 18:45:07 +00:00
|
|
|
#endif /* _KERNEL_DEBUG_H */
|