mirror of
https://github.com/reactos/reactos.git
synced 2025-07-31 05:41:58 +00:00
[NTOSKRNL]
Move x86 specific file trap_x.h into include/internal/i386 svn path=/trunk/; revision=53699
This commit is contained in:
parent
9c8386d2b6
commit
611d62ecb0
3 changed files with 4 additions and 4 deletions
|
@ -493,7 +493,7 @@ extern CHAR KiSystemCallExit2[];
|
|||
//
|
||||
// Trap Macros
|
||||
//
|
||||
#include "../trap_x.h"
|
||||
#include "trap_x.h"
|
||||
|
||||
//
|
||||
// Returns a thread's FPU save area
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
/*
|
||||
* PROJECT: ReactOS Kernel
|
||||
* LICENSE: BSD - See COPYING.ARM in the top level directory
|
||||
* FILE: ntoskrnl/include/trap_x.h
|
||||
* FILE: ntoskrnl/include/i386/trap_x.h
|
||||
* PURPOSE: Internal Inlined Functions for the Trap Handling Code
|
||||
* PROGRAMMERS: ReactOS Portable Systems Group
|
||||
*/
|
||||
|
@ -91,7 +91,7 @@ KiFillTrapFrameDebug(IN PKTRAP_FRAME TrapFrame)
|
|||
TrapFrame->DbgArgPointer = TrapFrame->Edx;
|
||||
TrapFrame->DbgArgMark = 0xBADB0D00;
|
||||
TrapFrame->DbgEip = TrapFrame->Eip;
|
||||
TrapFrame->DbgEbp = TrapFrame->Ebp;
|
||||
TrapFrame->DbgEbp = TrapFrame->Ebp;
|
||||
TrapFrame->PreviousPreviousMode = -1;
|
||||
}
|
||||
|
|
@ -11,7 +11,7 @@
|
|||
#include <ntoskrnl.h>
|
||||
#define NDEBUG
|
||||
#include <debug.h>
|
||||
#include "internal/trap_x.h"
|
||||
#include "internal/i386/trap_x.h"
|
||||
|
||||
/* GLOBALS *******************************************************************/
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue