mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 10:04:49 +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;
|
||||
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 CONTEXT KdbgContext;
|
||||
static EXCEPTION_RECORD64 KdbgExceptionRecord;
|
||||
|
|
|
@ -137,17 +137,6 @@ PCHAR KdPrintCircularBuffer = KdPrintDefaultCircularBuffer;
|
|||
ULONG KdPrintBufferSize = sizeof(KdPrintDefaultCircularBuffer);
|
||||
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
|
||||
//
|
||||
|
|
Loading…
Reference in a new issue