diff options
author | Anton Nefedov | 2017-02-14 07:25:23 +0100 |
---|---|---|
committer | Paolo Bonzini | 2017-02-16 15:30:49 +0100 |
commit | c86f106b857dd8922e29ec746a8dd47e8a15ebbd (patch) | |
tree | d2140a86198cce1cb27cbe2a0c8d2065fb65c7f7 /include/sysemu/sysemu.h | |
parent | i386/cpu: add crash-information QOM property (diff) | |
download | qemu-c86f106b857dd8922e29ec746a8dd47e8a15ebbd.tar.gz qemu-c86f106b857dd8922e29ec746a8dd47e8a15ebbd.tar.xz qemu-c86f106b857dd8922e29ec746a8dd47e8a15ebbd.zip |
report guest crash information in GUEST_PANICKED event
it's not very convenient to use the crash-information property interface,
so provide a CPU class callback to get the guest crash information, and pass
that information in the event
Signed-off-by: Anton Nefedov <anton.nefedov@virtuozzo.com>
Signed-off-by: Denis V. Lunev <den@openvz.org>
Message-Id: <1487053524-18674-3-git-send-email-den@openvz.org>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'include/sysemu/sysemu.h')
-rw-r--r-- | include/sysemu/sysemu.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/sysemu/sysemu.h b/include/sysemu/sysemu.h index eda5241d38..576c7ce640 100644 --- a/include/sysemu/sysemu.h +++ b/include/sysemu/sysemu.h @@ -66,7 +66,7 @@ int qemu_shutdown_requested_get(void); int qemu_reset_requested_get(void); void qemu_system_killed(int signal, pid_t pid); void qemu_system_reset(bool report); -void qemu_system_guest_panicked(void); +void qemu_system_guest_panicked(GuestPanicInformation *info); size_t qemu_target_page_bits(void); void qemu_add_exit_notifier(Notifier *notify); |