mirror of
https://github.com/reactos/reactos.git
synced 2025-08-02 17:56:06 +00:00
- Only print out debug data for aborts if we can't handle them. Makes the debug log easier to read.
svn path=/trunk/; revision=34445
This commit is contained in:
parent
53f621c80d
commit
ae45b8fbbb
1 changed files with 4 additions and 4 deletions
|
@ -437,9 +437,7 @@ KiDataAbortHandler(IN PKTRAP_FRAME TrapFrame)
|
|||
NTSTATUS Status;
|
||||
PVOID Address = (PVOID)KeArmFaultAddressRegisterGet();
|
||||
ASSERT(TrapFrame->DbgArgMark == 0xBADB0D00);
|
||||
DPRINT1("[ABORT] (%x) @ %p/%p/%p\n",
|
||||
KeArmFaultStatusRegisterGet(), Address, TrapFrame->SvcLr, TrapFrame->Pc);
|
||||
|
||||
|
||||
//
|
||||
// Check if this is a page fault
|
||||
//
|
||||
|
@ -451,7 +449,9 @@ KiDataAbortHandler(IN PKTRAP_FRAME TrapFrame)
|
|||
TrapFrame);
|
||||
if (Status == STATUS_SUCCESS) return Status;
|
||||
}
|
||||
|
||||
|
||||
DPRINT1("[ABORT] (%x) @ %p/%p/%p\n",
|
||||
KeArmFaultStatusRegisterGet(), Address, TrapFrame->SvcLr, TrapFrame->Pc);
|
||||
UNIMPLEMENTED;
|
||||
ASSERT(FALSE);
|
||||
return STATUS_SUCCESS;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue