nmi.c (17c8a2197888bac8ec0256b16919b721c76c5e62) nmi.c (18c86e2b9d85a89818f485c2cadafa6e3932e43a)
1/*
2 * NMI monitor handler class and helpers.
3 *
4 * Copyright IBM Corp., 2014
5 *
6 * Author: Alexey Kardashevskiy <aik@ozlabs.ru>
7 *
8 * This program is free software; you can redistribute it and/or modify

--- 5 unchanged lines hidden (view full) ---

14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, see <http://www.gnu.org/licenses/>.
20 */
21
1/*
2 * NMI monitor handler class and helpers.
3 *
4 * Copyright IBM Corp., 2014
5 *
6 * Author: Alexey Kardashevskiy <aik@ozlabs.ru>
7 *
8 * This program is free software; you can redistribute it and/or modify

--- 5 unchanged lines hidden (view full) ---

14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, see <http://www.gnu.org/licenses/>.
20 */
21
22#include "qemu/osdep.h"
22#include "hw/nmi.h"
23#include "qapi/qmp/qerror.h"
24#include "monitor/monitor.h"
25
26struct do_nmi_s {
27 int cpu_index;
28 Error *err;
29 bool handled;

--- 75 unchanged lines hidden ---
23#include "hw/nmi.h"
24#include "qapi/qmp/qerror.h"
25#include "monitor/monitor.h"
26
27struct do_nmi_s {
28 int cpu_index;
29 Error *err;
30 bool handled;

--- 75 unchanged lines hidden ---