mirror of https://github.com/lianthony/NT4.0
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
768 B
42 lines
768 B
/*++
|
|
|
|
Copyright (c) 1990 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
kddata.c
|
|
|
|
Abstract:
|
|
|
|
This module contains global data for the portable kernel debgger.
|
|
|
|
Author:
|
|
|
|
Mark Lucovsky 1-Nov-1993
|
|
|
|
Revision History:
|
|
|
|
--*/
|
|
|
|
#include "kdp.h"
|
|
|
|
#ifdef _X86_
|
|
#ifdef ALLOC_PRAGMA
|
|
#pragma data_seg("PAGEKD")
|
|
#endif
|
|
#endif // _X86_
|
|
|
|
BREAKPOINT_ENTRY KdpBreakpointTable[BREAKPOINT_TABLE_SIZE] = {0};
|
|
UCHAR KdpMessageBuffer[KDP_MESSAGE_BUFFER_SIZE] = {0};
|
|
DBGKD_INTERNAL_BREAKPOINT KdpInternalBPs[DBGKD_MAX_INTERNAL_BREAKPOINTS] = {0};
|
|
|
|
LARGE_INTEGER KdPerformanceCounterRate = {0,0};
|
|
LARGE_INTEGER KdTimerStart = {0,0} ;
|
|
LARGE_INTEGER KdTimerStop = {0,0};
|
|
LARGE_INTEGER KdTimerDifference = {0,0};
|
|
|
|
#ifdef _X86_
|
|
#ifdef ALLOC_PRAGMA
|
|
#pragma data_seg()
|
|
#endif
|
|
#endif // _X86_
|