* [Qemu-devel] [4271] Add a monitor command to raise NMI
@ 2008-04-27 23:52 Aurelien Jarno
0 siblings, 0 replies; only message in thread
From: Aurelien Jarno @ 2008-04-27 23:52 UTC (permalink / raw)
To: qemu-devel
Revision: 4271
http://svn.sv.gnu.org/viewvc/?view=rev&root=qemu&revision=4271
Author: aurel32
Date: 2008-04-27 23:52:12 +0000 (Sun, 27 Apr 2008)
Log Message:
-----------
Add a monitor command to raise NMI
(Jan Kiszka)
Modified Paths:
--------------
trunk/monitor.c
Modified: trunk/monitor.c
===================================================================
--- trunk/monitor.c 2008-04-27 23:46:00 UTC (rev 4270)
+++ trunk/monitor.c 2008-04-27 23:52:12 UTC (rev 4271)
@@ -1283,6 +1283,19 @@
}
#endif
+#if defined(TARGET_I386)
+static void do_inject_nmi(int cpu_index)
+{
+ CPUState *env;
+
+ for (env = first_cpu; env != NULL; env = env->next_cpu)
+ if (env->cpu_index == cpu_index) {
+ cpu_interrupt(env, CPU_INTERRUPT_NMI);
+ break;
+ }
+}
+#endif
+
static term_cmd_t term_cmds[] = {
{ "help|?", "s?", do_help,
"[cmd]", "show the help" },
@@ -1356,6 +1369,10 @@
"addr size file", "save to disk virtual memory dump starting at 'addr' of size 'size'", },
{ "pmemsave", "lis", do_physical_memory_save,
"addr size file", "save to disk physical memory dump starting at 'addr' of size 'size'", },
+#if defined(TARGET_I386)
+ { "nmi", "i", do_inject_nmi,
+ "cpu", "inject an NMI on the given CPU", },
+#endif
{ NULL, NULL, },
};
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2008-04-27 23:52 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-04-27 23:52 [Qemu-devel] [4271] Add a monitor command to raise NMI Aurelien Jarno
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).