watchdog.c (357e81c7e880f868833edf9f53cce1f3b09ea8ec) | watchdog.c (0430891ce162b986c6e02a7729a942ecd2a32ca4) |
---|---|
1/* 2 * Virtual hardware watchdog. 3 * 4 * Copyright (C) 2009 Red Hat Inc. 5 * 6 * This program is free software; you can redistribute it and/or 7 * modify it under the terms of the GNU General Public License 8 * as published by the Free Software Foundation; either version 2 --- 5 unchanged lines hidden (view full) --- 14 * GNU General Public License for more details. 15 * 16 * You should have received a copy of the GNU General Public License 17 * along with this program; if not, see <http://www.gnu.org/licenses/>. 18 * 19 * By Richard W.M. Jones (rjones@redhat.com). 20 */ 21 | 1/* 2 * Virtual hardware watchdog. 3 * 4 * Copyright (C) 2009 Red Hat Inc. 5 * 6 * This program is free software; you can redistribute it and/or 7 * modify it under the terms of the GNU General Public License 8 * as published by the Free Software Foundation; either version 2 --- 5 unchanged lines hidden (view full) --- 14 * GNU General Public License for more details. 15 * 16 * You should have received a copy of the GNU General Public License 17 * along with this program; if not, see <http://www.gnu.org/licenses/>. 18 * 19 * By Richard W.M. Jones (rjones@redhat.com). 20 */ 21 |
22#include "qemu/osdep.h" |
|
22#include "qemu-common.h" 23#include "qemu/option.h" 24#include "qemu/config-file.h" 25#include "qemu/queue.h" 26#include "qapi/qmp/types.h" 27#include "sysemu/sysemu.h" 28#include "sysemu/watchdog.h" 29#include "qapi-event.h" --- 119 unchanged lines hidden --- | 23#include "qemu-common.h" 24#include "qemu/option.h" 25#include "qemu/config-file.h" 26#include "qemu/queue.h" 27#include "qapi/qmp/types.h" 28#include "sysemu/sysemu.h" 29#include "sysemu/watchdog.h" 30#include "qapi-event.h" --- 119 unchanged lines hidden --- |