mirror of
https://github.com/reactos/reactos.git
synced 2025-08-03 07:16:18 +00:00
[BUGCODES]
Bug check code 0x5d is UNSUPPORTED_PROCESSOR. [NTOSKRNL] Use it. svn path=/trunk/; revision=53843
This commit is contained in:
parent
6bed73a4e1
commit
951066d094
2 changed files with 4 additions and 4 deletions
|
@ -825,9 +825,9 @@ HAL_INITIALIZATION_FAILED
|
|||
MessageId=0x5D
|
||||
Severity=Success
|
||||
Facility=System
|
||||
SymbolicName=HEAP_INITIALIZATION_FAILED
|
||||
SymbolicName=UNSUPPORTED_PROCESSOR
|
||||
Language=English
|
||||
HEAP_INITIALIZATION_FAILED
|
||||
UNSUPPORTED_PROCESSOR
|
||||
.
|
||||
|
||||
MessageId=0x5E
|
||||
|
|
|
@ -407,7 +407,7 @@ KiInitializeKernel(IN PKPROCESS InitProcess,
|
|||
PoInitializePrcb(Prcb);
|
||||
|
||||
/* Bugcheck if this is a 386 CPU */
|
||||
if (Prcb->CpuType == 3) KeBugCheckEx(0x5D, 0x386, 0, 0, 0);
|
||||
if (Prcb->CpuType == 3) KeBugCheckEx(UNSUPPORTED_PROCESSOR, 0x386, 0, 0, 0);
|
||||
|
||||
/* Get the processor features for the CPU */
|
||||
FeatureBits = KiGetFeatureBits();
|
||||
|
@ -480,7 +480,7 @@ KiInitializeKernel(IN PKPROCESS InitProcess,
|
|||
RtlCopyMemory(Vendor, Prcb->VendorString, sizeof(Vendor));
|
||||
|
||||
/* Bugcheck the system. Windows *requires* this */
|
||||
KeBugCheckEx(0x5D,
|
||||
KeBugCheckEx(UNSUPPORTED_PROCESSOR,
|
||||
(1 << 24 ) | (Prcb->CpuType << 16) | Prcb->CpuStep,
|
||||
Vendor[0],
|
||||
Vendor[1],
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue