From 64d7b1337be727e233aee6b7d23bb207ec76a6ad Mon Sep 17 00:00:00 2001 From: ReactOS Portable Systems Group Date: Sun, 13 Jul 2008 23:32:38 +0000 Subject: [PATCH] - Prefetch aborts behave like other exceptions, not like data aborts, in terms of the PC offset due to the pipeline behavior. So call TRAP_PROLOG with 0, not 1 svn path=/trunk/; revision=34479 --- reactos/ntoskrnl/ke/arm/trap.s | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reactos/ntoskrnl/ke/arm/trap.s b/reactos/ntoskrnl/ke/arm/trap.s index e3a564931d0..63c327a61bd 100644 --- a/reactos/ntoskrnl/ke/arm/trap.s +++ b/reactos/ntoskrnl/ke/arm/trap.s @@ -69,7 +69,7 @@ // // Handle trap entry // - TRAP_PROLOG 1 // FromAbort + TRAP_PROLOG 0 // NotFromAbort // // Call the C handler