From a249132448deac50a6c9bf77ee1bf198d4867587 Mon Sep 17 00:00:00 2001 From: ReactOS Portable Systems Group Date: Mon, 28 Jul 2008 02:15:40 +0000 Subject: [PATCH] - Define the "generic" versions of the ARM-specific HAL routines. - Now the generic HAL builds without linker errors. svn path=/trunk/; revision=34886 --- reactos/hal/hal/hal.c | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/reactos/hal/hal/hal.c b/reactos/hal/hal/hal.c index 8d09ee9981f..6448f3b2051 100644 --- a/reactos/hal/hal/hal.c +++ b/reactos/hal/hal/hal.c @@ -1083,4 +1083,23 @@ KeReleaseQueuedSpinLock(IN PKLOCK_QUEUE_HANDLE LockHandle, UNIMPLEMENTED; } +VOID +HalSweepDcache(VOID) +{ + UNIMPLEMENTED; +} + +VOID +HalSweepIcache(VOID) +{ + UNIMPLEMENTED; +} + +ULONG +HalGetInterruptSource(VOID) +{ + UNIMPLEMENTED; + return 0; +} + /* EOF */