[NTOS]: All calls to DbgPrint will go to DbgPrintEarly for now.

[NTOS]: More header fixes to match new definitions.

svn path=/trunk/; revision=45514
This commit is contained in:
Sir Richard 2010-02-09 02:12:27 +00:00
parent 16ab546411
commit 9a43c209d4
3 changed files with 8 additions and 8 deletions

View file

@ -54,7 +54,7 @@
// All architectures but x86 have it in the PRCB's KeContextSwitches // All architectures but x86 have it in the PRCB's KeContextSwitches
// //
#define KeGetContextSwitches(Prcb) \ #define KeGetContextSwitches(Prcb) \
Prcb->KeContextSwitches CONTAINING_RECORD(Prcb, KIPCR, PrcbData)->ContextSwitches
// //
// Returns the Interrupt State from a Trap Frame. // Returns the Interrupt State from a Trap Frame.
@ -107,13 +107,6 @@ KiApcInterrupt(
#include "mm.h" #include "mm.h"
VOID
KeFillFixedEntryTb(
IN ARM_PTE Pte,
IN PVOID Virtual,
IN ULONG Index
);
VOID VOID
KeFlushTb( KeFlushTb(
VOID VOID

View file

@ -27,6 +27,7 @@
#define PDE_BASE 0xC0400000 #define PDE_BASE 0xC0400000
#define HYPER_SPACE 0xC0404000 #define HYPER_SPACE 0xC0404000
#if 0
typedef struct _HARDWARE_PDE_ARMV6 typedef struct _HARDWARE_PDE_ARMV6
{ {
ULONG Valid:1; // Only for small pages ULONG Valid:1; // Only for small pages
@ -77,6 +78,7 @@ typedef struct _HARDWARE_PTE_ARMV6
C_ASSERT(sizeof(HARDWARE_PDE_ARMV6) == sizeof(ULONG)); C_ASSERT(sizeof(HARDWARE_PDE_ARMV6) == sizeof(ULONG));
C_ASSERT(sizeof(HARDWARE_LARGE_PTE_ARMV6) == sizeof(ULONG)); C_ASSERT(sizeof(HARDWARE_LARGE_PTE_ARMV6) == sizeof(ULONG));
C_ASSERT(sizeof(HARDWARE_PTE_ARMV6) == sizeof(ULONG)); C_ASSERT(sizeof(HARDWARE_PTE_ARMV6) == sizeof(ULONG));
#endif
/* For FreeLDR */ /* For FreeLDR */
typedef struct _PAGE_TABLE_ARM typedef struct _PAGE_TABLE_ARM

View file

@ -8,6 +8,11 @@
/* INCLUDES ******************************************************************/ /* INCLUDES ******************************************************************/
/* ARM Bringup Hack */
#ifdef _M_ARM
#define DbgPrint DbgPrintEarly
#endif
/* Version Data */ /* Version Data */
#undef __MSVCRT__ #undef __MSVCRT__
#include <psdk/ntverp.h> #include <psdk/ntverp.h>