mirror of
https://github.com/reactos/reactos.git
synced 2025-02-22 16:36:33 +00:00
[NTOS:KE] Remove dead code
This commit is contained in:
parent
8b6e441a6e
commit
fd8cacae4c
1 changed files with 0 additions and 71 deletions
|
@ -294,74 +294,6 @@ KeRosDumpStackFrames(IN PULONG_PTR Frame OPTIONAL,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
VOID
|
|
||||||
NTAPI
|
|
||||||
KeRosDumpTriageForBugZillaReport(VOID)
|
|
||||||
{
|
|
||||||
#if 0
|
|
||||||
extern BOOLEAN KiFastSystemCallDisable, KiSMTProcessorsPresent;
|
|
||||||
extern ULONG KeI386MachineType, MxcsrFeatureMask;
|
|
||||||
extern BOOLEAN Ke386Pae, Ke386NoExecute;
|
|
||||||
|
|
||||||
DbgPrint("ReactOS has crashed! Please go to http://jira.reactos.org/ to file a bug!\n");
|
|
||||||
DbgPrint("\nHardware Information\n");
|
|
||||||
DbgPrint("Processor Architecture: %d\n"
|
|
||||||
"Feature Bits: %d\n"
|
|
||||||
"System Call Disabled: %d\n"
|
|
||||||
"NPX Present: %d\n"
|
|
||||||
"MXCsr Mask: %d\n"
|
|
||||||
"MXCsr Feature Mask: %d\n"
|
|
||||||
"XMMI Present: %d\n"
|
|
||||||
"FXSR Present: %d\n"
|
|
||||||
"Machine Type: %d\n"
|
|
||||||
"PAE: %d\n"
|
|
||||||
"NX: %d\n"
|
|
||||||
"Processors: %d\n"
|
|
||||||
"Active Processors: %d\n"
|
|
||||||
"Pentium LOCK Bug: %d\n"
|
|
||||||
"Hyperthreading: %d\n"
|
|
||||||
"CPU Manufacturer: %s\n"
|
|
||||||
"CPU Name: %wZ\n"
|
|
||||||
"CPUID: %d\n"
|
|
||||||
"CPU Type: %d\n"
|
|
||||||
"CPU Stepping: %d\n"
|
|
||||||
"CPU Speed: %d\n"
|
|
||||||
"CPU L2 Cache: %d\n"
|
|
||||||
"BIOS Date: %wZ\n"
|
|
||||||
"BIOS Version: %wZ\n"
|
|
||||||
"Video BIOS Date: %wZ\n"
|
|
||||||
"Video BIOS Version: %wZ\n"
|
|
||||||
"Memory: %d\n",
|
|
||||||
KeProcessorArchitecture,
|
|
||||||
KeFeatureBits,
|
|
||||||
KiFastSystemCallDisable,
|
|
||||||
KeI386NpxPresent,
|
|
||||||
KiMXCsrMask,
|
|
||||||
MxcsrFeatureMask,
|
|
||||||
KeI386XMMIPresent,
|
|
||||||
KeI386FxsrPresent,
|
|
||||||
KeI386MachineType,
|
|
||||||
Ke386Pae,
|
|
||||||
Ke386NoExecute,
|
|
||||||
KeNumberProcessors,
|
|
||||||
KeActiveProcessors,
|
|
||||||
KiI386PentiumLockErrataPresent,
|
|
||||||
KiSMTProcessorsPresent,
|
|
||||||
KeGetCurrentPrcb()->VendorString,
|
|
||||||
&KeRosProcessorName,
|
|
||||||
KeGetCurrentPrcb()->CpuID,
|
|
||||||
KeGetCurrentPrcb()->CpuType,
|
|
||||||
KeGetCurrentPrcb()->CpuStep,
|
|
||||||
KeGetCurrentPrcb()->MHz,
|
|
||||||
((PKIPCR)KeGetPcr())->SecondLevelCacheSize,
|
|
||||||
&KeRosBiosDate,
|
|
||||||
&KeRosBiosVersion,
|
|
||||||
&KeRosVideoBiosDate,
|
|
||||||
&KeRosVideoBiosVersion,
|
|
||||||
MmNumberOfPhysicalPages * PAGE_SIZE);
|
|
||||||
#endif
|
|
||||||
}
|
|
||||||
|
|
||||||
VOID
|
VOID
|
||||||
INIT_FUNCTION
|
INIT_FUNCTION
|
||||||
NTAPI
|
NTAPI
|
||||||
|
@ -1143,9 +1075,6 @@ KeBugCheckWithTf(IN ULONG BugCheckCode,
|
||||||
* We'll manually dump the stack for the user.
|
* We'll manually dump the stack for the user.
|
||||||
*/
|
*/
|
||||||
KeRosDumpStackFrames(NULL, 0);
|
KeRosDumpStackFrames(NULL, 0);
|
||||||
|
|
||||||
/* ROS HACK 2: Generate something useful for Bugzilla */
|
|
||||||
KeRosDumpTriageForBugZillaReport();
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue