diff options
author | Luiz Capitulino <lcapitulino@redhat.com> | 2011-11-23 12:55:53 -0200 |
---|---|---|
committer | Luiz Capitulino <lcapitulino@redhat.com> | 2011-12-06 11:40:01 -0200 |
commit | ab49ab5c488237f3656689c4a3cab29e29884ca6 (patch) | |
tree | 36dd484fc159f7f54d3c7796b3b0ca28beaf04ad /hmp.c | |
parent | e42e818bf45f2f70cdd88a3864efcc3964039f37 (diff) | |
download | qemu-ab49ab5c488237f3656689c4a3cab29e29884ca6.zip |
qapi: Convert inject-nmi
Signed-off-by: Luiz Capitulino <lcapitulino@redhat.com>
Diffstat (limited to 'hmp.c')
-rw-r--r-- | hmp.c | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -593,3 +593,11 @@ void hmp_cont(Monitor *mon, const QDict *qdict) hmp_handle_error(mon, &errp); } } + +void hmp_inject_nmi(Monitor *mon, const QDict *qdict) +{ + Error *errp = NULL; + + qmp_inject_nmi(&errp); + hmp_handle_error(mon, &errp); +} |