Fix failed rel build.

svn path=/trunk/; revision=52558
This commit is contained in:
Dmitry Gorbachev 2011-07-07 19:50:52 +00:00
parent 2a66163177
commit d573717e00
2 changed files with 2 additions and 4 deletions

View file

@ -39,7 +39,7 @@ volatile ULONG KdpDmesgCurrentPosition = 0;
volatile ULONG KdpDmesgFreeBytes = 0;
volatile ULONG KdbDmesgTotalWritten = 0;
KSPIN_LOCK KdpDmesgLogSpinLock;
extern volatile BOOLEAN KdbpIsInDmesgMode;
volatile BOOLEAN KdbpIsInDmesgMode = FALSE;
/* FILE DEBUG LOG FUNCTIONS **************************************************/

View file

@ -110,10 +110,8 @@ PCHAR KdbInitFileBuffer = NULL; /* Buffer where KDBinit file is loaded into duri
BOOLEAN KdbpBugCheckRequested = FALSE;
/* Vars for dmesg */
/* defined here, used in ../kd/kdio.c: */
volatile BOOLEAN KdbpIsInDmesgMode = FALSE;
/* defined in ../kd/kdio.c, declare here: */
extern volatile BOOLEAN KdbpIsInDmesgMode;
extern const ULONG KdpDmesgBufferSize;
extern PCHAR KdpDmesgBuffer;
extern volatile ULONG KdpDmesgCurrentPosition;