From 88b3be201acf64e0bd19782bebd533901c951c87 Mon Sep 17 00:00:00 2001 From: Markus Armbruster Date: Fri, 21 Aug 2009 10:31:32 +0200 Subject: Move watchdog, watchdog_action, give them internal linkage Signed-off-by: Markus Armbruster Signed-off-by: Anthony Liguori --- hw/watchdog.c | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'hw/watchdog.c') diff --git a/hw/watchdog.c b/hw/watchdog.c index fde2f1b3d4..359c3185e3 100644 --- a/hw/watchdog.c +++ b/hw/watchdog.c @@ -24,6 +24,16 @@ #include "sysemu.h" #include "hw/watchdog.h" +/* Possible values for action parameter. */ +#define WDT_RESET 1 /* Hard reset. */ +#define WDT_SHUTDOWN 2 /* Shutdown. */ +#define WDT_POWEROFF 3 /* Quit. */ +#define WDT_PAUSE 4 /* Pause. */ +#define WDT_DEBUG 5 /* Prints a message and continues running. */ +#define WDT_NONE 6 /* Do nothing. */ + +static WatchdogTimerModel *watchdog; +static int watchdog_action = WDT_RESET; static LIST_HEAD(watchdog_list, WatchdogTimerModel) watchdog_list; void watchdog_add_model(WatchdogTimerModel *model) -- cgit v1.2.1