mirror of
https://github.com/reactos/reactos.git
synced 2024-11-10 16:48:16 +00:00
c424146e2c
svn path=/branches/cmake-bringup/; revision=48236
41 lines
783 B
C
41 lines
783 B
C
/* $Id: reboot.c 23907 2006-09-04 05:52:23Z arty $
|
|
*
|
|
* COPYRIGHT: See COPYING in the top level directory
|
|
* PROJECT: ReactOS kernel
|
|
* FILE: ntoskrnl/hal/x86/reboot.c
|
|
* PURPOSE: Reboot functions.
|
|
* PROGRAMMER: Eric Kohl
|
|
* UPDATE HISTORY:
|
|
* Created 11/10/99
|
|
*/
|
|
|
|
#include <hal.h>
|
|
#define NDEBUG
|
|
#include <debug.h>
|
|
|
|
typedef void (*void_fun)();
|
|
static VOID
|
|
HalReboot (VOID)
|
|
{
|
|
void_fun reset_vector = (void_fun)0xfff00100;
|
|
reset_vector();
|
|
}
|
|
|
|
|
|
VOID NTAPI
|
|
HalReturnToFirmware (
|
|
FIRMWARE_REENTRY Action
|
|
)
|
|
{
|
|
if (Action == HalHaltRoutine)
|
|
{
|
|
DbgPrint ("HalReturnToFirmware called!\n");
|
|
DbgBreakPoint ();
|
|
}
|
|
else if (Action == HalRebootRoutine)
|
|
{
|
|
HalReboot ();
|
|
}
|
|
}
|
|
|
|
/* EOF */
|