From: Hervé Poussineau Date: Sat, 26 Nov 2005 08:21:42 +0000 (+0000) Subject: Add stub for HalAllocateCrashDumpRegisters X-Git-Tag: backups/ros-branch-0_2_9@19949~313 X-Git-Url: https://git.reactos.org/?p=reactos.git;a=commitdiff_plain;h=45dc2d15aa351f74d57bdef0e3fc727d271cbd37 Add stub for HalAllocateCrashDumpRegisters svn path=/trunk/; revision=19616 --- 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) {