2009-04-25 16:56:19 +04: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-17 00:47:01 +04:00
|
|
|
* along with this program; if not, see <http://www.gnu.org/licenses/>.
|
2009-04-25 16:56:19 +04:00
|
|
|
*
|
|
|
|
* By Richard W.M. Jones (rjones@redhat.com).
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef QEMU_WATCHDOG_H
|
|
|
|
#define QEMU_WATCHDOG_H
|
|
|
|
|
2012-12-17 21:20:00 +04:00
|
|
|
#include "qemu/queue.h"
|
2018-02-11 12:36:01 +03:00
|
|
|
#include "qapi/qapi-types-run-state.h"
|
2016-01-19 10:34:41 +03:00
|
|
|
|
2009-04-25 16:56:19 +04:00
|
|
|
/* in hw/watchdog.c */
|
2017-09-07 11:05:25 +03:00
|
|
|
WatchdogAction get_watchdog_action(void);
|
2011-01-23 19:21:20 +03:00
|
|
|
void watchdog_perform_action(void);
|
2009-04-25 16:56:19 +04:00
|
|
|
|
|
|
|
#endif /* QEMU_WATCHDOG_H */
|