mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 10:04:49 +00:00
Kernel debugger stubs.
svn path=/trunk/; revision=620
This commit is contained in:
parent
dbb9546d9d
commit
676e6609ce
1 changed files with 34 additions and 0 deletions
34
reactos/ntoskrnl/kd/kdebug.c
Normal file
34
reactos/ntoskrnl/kd/kdebug.c
Normal file
|
@ -0,0 +1,34 @@
|
||||||
|
/* $Id: kdebug.c,v 1.1 1999/08/20 16:28:10 ea Exp $
|
||||||
|
*
|
||||||
|
* reactos/ntoskrnl/kd/kdebug.c
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
#include <ntos.h>
|
||||||
|
|
||||||
|
BYTE STDCALL KdPortPollByte(VOID);
|
||||||
|
|
||||||
|
/* DATA */
|
||||||
|
|
||||||
|
BOOLEAN
|
||||||
|
KdDebuggerEnabled = FALSE;
|
||||||
|
|
||||||
|
BOOLEAN
|
||||||
|
KdDebuggerNotPresent = TRUE;
|
||||||
|
|
||||||
|
BOOLEAN
|
||||||
|
KdComPortInUse = FALSE;
|
||||||
|
|
||||||
|
|
||||||
|
/* NTOSKRNL.KdPollBreakIn */
|
||||||
|
BYTE
|
||||||
|
STDCALL
|
||||||
|
KdPollBreakIn (
|
||||||
|
VOID
|
||||||
|
)
|
||||||
|
{
|
||||||
|
return KdPortPollByte();
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/* EOF */
|
Loading…
Reference in a new issue