mirror of
https://github.com/reactos/reactos.git
synced 2025-05-11 13:27:47 +00:00
[NTOS:KD] Move some KDBG-specific variables to KDBG-specific file
This commit is contained in:
parent
0c76bbfe98
commit
d6d5caec7c
2 changed files with 9 additions and 11 deletions
|
@ -43,6 +43,15 @@ volatile ULONG KdbDmesgTotalWritten = 0;
|
||||||
volatile BOOLEAN KdbpIsInDmesgMode = FALSE;
|
volatile BOOLEAN KdbpIsInDmesgMode = FALSE;
|
||||||
static KSPIN_LOCK KdpDmesgLogSpinLock;
|
static KSPIN_LOCK KdpDmesgLogSpinLock;
|
||||||
|
|
||||||
|
KDP_DEBUG_MODE KdpDebugMode;
|
||||||
|
LIST_ENTRY KdProviders = {&KdProviders, &KdProviders};
|
||||||
|
KD_DISPATCH_TABLE DispatchTable[KdMax];
|
||||||
|
|
||||||
|
PKDP_INIT_ROUTINE InitRoutines[KdMax] = {KdpScreenInit,
|
||||||
|
KdpSerialInit,
|
||||||
|
KdpDebugLogInit,
|
||||||
|
KdpKdbgInit};
|
||||||
|
|
||||||
static ULONG KdbgNextApiNumber = DbgKdContinueApi;
|
static ULONG KdbgNextApiNumber = DbgKdContinueApi;
|
||||||
static CONTEXT KdbgContext;
|
static CONTEXT KdbgContext;
|
||||||
static EXCEPTION_RECORD64 KdbgExceptionRecord;
|
static EXCEPTION_RECORD64 KdbgExceptionRecord;
|
||||||
|
|
|
@ -137,17 +137,6 @@ PCHAR KdPrintCircularBuffer = KdPrintDefaultCircularBuffer;
|
||||||
ULONG KdPrintBufferSize = sizeof(KdPrintDefaultCircularBuffer);
|
ULONG KdPrintBufferSize = sizeof(KdPrintDefaultCircularBuffer);
|
||||||
ULONG KdPrintBufferChanges = 0;
|
ULONG KdPrintBufferChanges = 0;
|
||||||
|
|
||||||
#ifndef _WINKD_
|
|
||||||
KDP_DEBUG_MODE KdpDebugMode;
|
|
||||||
LIST_ENTRY KdProviders = {&KdProviders, &KdProviders};
|
|
||||||
KD_DISPATCH_TABLE DispatchTable[KdMax];
|
|
||||||
|
|
||||||
PKDP_INIT_ROUTINE InitRoutines[KdMax] = {KdpScreenInit,
|
|
||||||
KdpSerialInit,
|
|
||||||
KdpDebugLogInit,
|
|
||||||
KdpKdbgInit};
|
|
||||||
#endif
|
|
||||||
|
|
||||||
//
|
//
|
||||||
// Debug Filter Masks
|
// Debug Filter Masks
|
||||||
//
|
//
|
||||||
|
|
Loading…
Reference in a new issue