summaryrefslogtreecommitdiff
path: root/exec.c
diff options
context:
space:
mode:
authorbellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162>2008-05-15 16:17:07 +0000
committerbellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162>2008-05-15 16:17:07 +0000
commit6e01bdaedc3fc42c88672fafe960d3371dabb63e (patch)
tree5664f7b475aa68a87fd777e6eda4a942766e221d /exec.c
parent7d55170268abe2fedc96a662edff52bfe68763a6 (diff)
downloadqemu-6e01bdaedc3fc42c88672fafe960d3371dabb63e.tar.gz
cpu_abort() is really an abort
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@4458 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'exec.c')
-rw-r--r--exec.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/exec.c b/exec.c
index 2fd00782e8..ce2d5d9842 100644
--- a/exec.c
+++ b/exec.c
@@ -1338,11 +1338,6 @@ void cpu_abort(CPUState *env, const char *fmt, ...)
vfprintf(stderr, fmt, ap);
fprintf(stderr, "\n");
#ifdef TARGET_I386
- if(env->intercept & INTERCEPT_SVM_MASK) {
- /* most probably the virtual machine should not
- be shut down but rather caught by the VMM */
- vmexit(SVM_EXIT_SHUTDOWN, 0);
- }
cpu_dump_state(env, stderr, fprintf, X86_DUMP_FPU | X86_DUMP_CCOP);
#else
cpu_dump_state(env, stderr, fprintf, 0);