2002-07-09 16:24:59 +04:00
|
|
|
/*
|
|
|
|
** Copyright 2001-2002, Travis Geiselbrecht. All rights reserved.
|
|
|
|
** Distributed under the terms of the NewOS License.
|
|
|
|
*/
|
|
|
|
#ifndef _KERNEL_DEBUG_H
|
|
|
|
#define _KERNEL_DEBUG_H
|
|
|
|
|
2003-05-03 20:03:26 +04:00
|
|
|
|
2004-05-18 13:42:13 +04:00
|
|
|
#include <OS.h>
|
2003-05-03 20:03:26 +04:00
|
|
|
|
|
|
|
struct kernel_args;
|
2002-07-09 16:24:59 +04:00
|
|
|
|
2003-11-11 07:01:31 +03:00
|
|
|
|
2002-07-18 22:45:07 +04:00
|
|
|
#if DEBUG
|
2002-11-28 17:07:28 +03:00
|
|
|
# define ASSERT(x) \
|
|
|
|
if (x) {} else { panic("ASSERT FAILED (%s:%d): %s\n", __FILE__, __LINE__, #x); }
|
2002-07-18 22:45:07 +04:00
|
|
|
#else
|
|
|
|
# define ASSERT(x)
|
2002-07-09 16:24:59 +04:00
|
|
|
#endif
|
2002-07-18 22:45:07 +04:00
|
|
|
|
2004-05-18 13:42:13 +04:00
|
|
|
extern int dbg_register_file[B_MAX_CPU_COUNT][14];
|
2003-11-14 01:07:36 +03:00
|
|
|
/* XXXmpetit -- must be made generic */
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
extern int dbg_init(struct kernel_args *ka);
|
|
|
|
extern int dbg_init2(struct kernel_args *ka);
|
|
|
|
extern char dbg_putch(char c);
|
|
|
|
extern void dbg_puts(const char *s);
|
|
|
|
|
|
|
|
extern void _user_debug_output(const char *userString);
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2002-07-18 22:45:07 +04:00
|
|
|
#endif /* _KERNEL_DEBUG_H */
|