Fix for x86 build.

svn path=/trunk/; revision=32315
This commit is contained in:
ReactOS Portable Systems Group 2008-02-12 06:38:41 +00:00
parent f537761b8d
commit 1ad36042e5
4 changed files with 5 additions and 4 deletions

View file

@ -41,5 +41,4 @@ KeArmDomainRegisterSet(IN ARM_DOMAIN_REGISTER DomainRegister)
__asm__ __volatile__ ("mcr p15, 0, %0, c3, c0, 0" : : "r"(DomainRegister.AsUlong) : "cc");
}
#define KeArchHaltProcessor KeArmHaltProcessor
#endif

View file

@ -5,6 +5,8 @@
#pragma GCC system_header
#endif
#define KeArchHaltProcessor() KeArmHaltProcessor()
typedef union _ARM_TTB_REGISTER
{
struct

View file

@ -410,9 +410,6 @@ Ke386SetEs(IN USHORT Value)
#error Unknown compiler for inline assembler
#endif
#define KeArchFnInit() Ke386FnInit()
#define KeArchHaltProcessor() Ke386HaltProcessor()
#endif
/* EOF */

View file

@ -45,6 +45,9 @@
#ifndef __ASM__
#define KeArchFnInit() Ke386FnInit()
#define KeArchHaltProcessor() Ke386HaltProcessor()
extern ULONG Ke386CacheAlignment;
struct _KPCR;