f33c8020e2
called by debug_init_post_vm(). Since the availability of a blue screen specific getchar() is static anyway, there is no need for the sBlueScreenGetChar variable (only the message "only serial input available" gets lost, but since that is platform specific anyway...). Hello blue screen! We now have an on-screen KDL, to be enabled by the kernel setting "bluescreen", just like on BeOS. The blue screen does not yet support any cursor actions or backspace, though (need to grab some stuff from our console driver). git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@12896 a95241bf-73f2-0310-859d-f6bbb57e9c96
44 lines
938 B
C
44 lines
938 B
C
/*
|
|
* Copyright 2002-2005, Axel Dörfler, axeld@pinc-software.de
|
|
* Distributed under the terms of the Haiku License.
|
|
*
|
|
* Copyright 2001-2002, Travis Geiselbrecht. All rights reserved.
|
|
* Distributed under the terms of the NewOS License.
|
|
*/
|
|
#ifndef _KERNEL_DEBUG_H
|
|
#define _KERNEL_DEBUG_H
|
|
|
|
|
|
#include <OS.h>
|
|
|
|
struct kernel_args;
|
|
|
|
|
|
#if DEBUG
|
|
# define ASSERT(x) \
|
|
if (x) {} else { panic("ASSERT FAILED (%s:%d): %s\n", __FILE__, __LINE__, #x); }
|
|
#else
|
|
# define ASSERT(x)
|
|
#endif
|
|
|
|
extern int dbg_register_file[B_MAX_CPU_COUNT][14];
|
|
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
extern status_t debug_init(struct kernel_args *args);
|
|
extern status_t debug_init_post_vm(struct kernel_args *args);
|
|
extern void debug_early_boot_message(const char *string);
|
|
extern void debug_putchar(char c);
|
|
extern void debug_puts(const char *s);
|
|
|
|
extern void _user_debug_output(const char *userString);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* _KERNEL_DEBUG_H */
|