From 45dc2d15aa351f74d57bdef0e3fc727d271cbd37 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Herv=C3=A9=20Poussineau?= Date: Sat, 26 Nov 2005 08:21:42 +0000 Subject: [PATCH] Add stub for HalAllocateCrashDumpRegisters svn path=/trunk/; revision=19616 --- reactos/hal/hal/hal.c | 10 ++++++++++ reactos/hal/hal/hal.def | 2 +- reactos/hal/halx86/generic/misc.c | 11 +++++++++++ 3 files changed, 22 insertions(+), 1 deletion(-) diff --git a/reactos/hal/hal/hal.c b/reactos/hal/hal/hal.c index 21f0be33430..afd73b18c7d 100644 --- a/reactos/hal/hal/hal.c +++ b/reactos/hal/hal/hal.c @@ -126,6 +126,16 @@ HalAllocateCommonBuffer( } +VOID +NTAPI +HalAllocateCrashDumpRegisters( + ULONG Unknown1, + ULONG Unknown2) +{ + UNIMPLEMENTED; +} + + NTSTATUS NTAPI HalAssignSlotResources( diff --git a/reactos/hal/hal/hal.def b/reactos/hal/hal/hal.def index 3b38a267076..0076c3eadaa 100644 --- a/reactos/hal/hal/hal.def +++ b/reactos/hal/hal/hal.def @@ -11,7 +11,7 @@ HalAdjustResourceList@4 HalAllProcessorsStarted@0 HalAllocateAdapterChannel@16 HalAllocateCommonBuffer@16 -;HalAllocateCrashDumpRegisters@8 +HalAllocateCrashDumpRegisters@8 HalAssignSlotResources@32 HalBeginSystemInterrupt@12 HalCalibratePerformanceCounter@4 diff --git a/reactos/hal/halx86/generic/misc.c b/reactos/hal/halx86/generic/misc.c index 227479f9f85..369f9815761 100644 --- a/reactos/hal/halx86/generic/misc.c +++ b/reactos/hal/halx86/generic/misc.c @@ -16,6 +16,17 @@ /* FUNCTIONS ****************************************************************/ + +VOID +NTAPI +HalAllocateCrashDumpRegisters( + ULONG Unknown1, + ULONG Unknown2) +{ + UNIMPLEMENTED; +} + + VOID STDCALL HalHandleNMI(ULONG Unused) {