[NTOSKRNL]

Move x86 specific file trap_x.h into include/internal/i386

svn path=/trunk/; revision=53699
This commit is contained in:
Timo Kreuzer 2011-09-13 12:53:50 +00:00
parent 9c8386d2b6
commit 611d62ecb0
3 changed files with 4 additions and 4 deletions

View file

@ -493,7 +493,7 @@ extern CHAR KiSystemCallExit2[];
//
// Trap Macros
//
#include "../trap_x.h"
#include "trap_x.h"
//
// Returns a thread's FPU save area

View file

@ -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;
}

View file

@ -11,7 +11,7 @@
#include <ntoskrnl.h>
#define NDEBUG
#include <debug.h>
#include "internal/trap_x.h"
#include "internal/i386/trap_x.h"
/* GLOBALS *******************************************************************/