2009-04-25 12:56:19 +00:00
|
|
|
/*
|
|
|
|
* Virtual hardware watchdog.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2009 Red Hat Inc.
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
2009-07-16 20:47:01 +00:00
|
|
|
* along with this program; if not, see <http://www.gnu.org/licenses/>.
|
2009-04-25 12:56:19 +00:00
|
|
|
*
|
|
|
|
* By Richard W.M. Jones (rjones@redhat.com).
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef QEMU_WATCHDOG_H
|
|
|
|
#define QEMU_WATCHDOG_H
|
|
|
|
|
2012-12-17 17:20:00 +00:00
|
|
|
#include "qemu/queue.h"
|
2018-02-11 09:36:01 +00:00
|
|
|
#include "qapi/qapi-types-run-state.h"
|
2016-01-19 07:34:41 +00:00
|
|
|
|
2009-04-25 12:56:19 +00:00
|
|
|
/* in hw/watchdog.c */
|
2017-09-07 08:05:25 +00:00
|
|
|
WatchdogAction get_watchdog_action(void);
|
2011-01-23 16:21:20 +00:00
|
|
|
void watchdog_perform_action(void);
|
2009-04-25 12:56:19 +00:00
|
|
|
|
|
|
|
#endif /* QEMU_WATCHDOG_H */
|