Forgot to test compilation under UP

UP is default

svn path=/trunk/; revision=1810
This commit is contained in:
David Welch 2001-04-17 23:53:16 +00:00
parent d41145488c
commit 6dd0418c50
3 changed files with 4 additions and 4 deletions

View file

@ -16,4 +16,4 @@ DBG := 1
#
# Whether to compile a multiprocessor or single processor version
#
MP := 1
MP := 0

View file

@ -214,7 +214,7 @@ KfLowerIrql (KIRQL NewIrql)
{
DbgPrint ("(%s:%d) NewIrql %x CurrentIrql %x\n",
__FILE__, __LINE__, NewIrql, CurrentIrql);
KeDumpStackFrames (0, 32);
KeBugCheck(0);
for(;;);
}

View file

@ -2,6 +2,6 @@
#ifndef __NTOSKRNL_INCLUDE_INTERNAL_CONFIG_H
#define __NTOSKRNL_INCLUDE_INTERNAL_CONFIG_H
#define DBG
#define MP
#define CONFIG "DBG MP"
#define UP
#define CONFIG "DBG UP"
#endif /* __NTOSKRNL_INCLUDE_INTERNAL_CONFIG_H */