mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-02 04:13:34 +00:00
[BUGCODES]
Bug check code 0x5d is UNSUPPORTED_PROCESSOR. [NTOSKRNL] Use it. svn path=/trunk/; revision=53843
This commit is contained in:
@@ -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],
|
||||
|
||||
Reference in New Issue
Block a user