fbc8207b73
Update to qemu 3.1.0-rc5. Is almost certainly the last rc, so should be same as 3.1.0 final. Putting into devel project 'early' because of SLE and Leap needs, not to get into Factory early. Look for the final 3.1 within a week. OBS-URL: https://build.opensuse.org/request/show/655897 OBS-URL: https://build.opensuse.org/package/show/Virtualization/qemu?expand=0&rev=433
35 lines
1.2 KiB
Diff
35 lines
1.2 KiB
Diff
From 61fab02f6284c00b6e01a15d7a8d5457d307c353 Mon Sep 17 00:00:00 2001
|
|
From: Alexander Graf <agraf@suse.de>
|
|
Date: Mon, 21 Nov 2011 23:50:36 +0100
|
|
Subject: [PATCH] XXX dont dump core on sigabort
|
|
|
|
Signed-off-by: Bruce Rogers <brogers@suse.com>
|
|
---
|
|
linux-user/signal.c | 6 ++++++
|
|
1 file changed, 6 insertions(+)
|
|
|
|
diff --git a/linux-user/signal.c b/linux-user/signal.c
|
|
index 602b631b92..49b00e0b2b 100644
|
|
--- a/linux-user/signal.c
|
|
+++ b/linux-user/signal.c
|
|
@@ -575,6 +575,10 @@ static void QEMU_NORETURN dump_core_and_abort(int target_sig)
|
|
trace_user_force_sig(env, target_sig, host_sig);
|
|
gdb_signalled(env, target_sig);
|
|
|
|
+ if (target_sig == 6) {
|
|
+ goto no_core;
|
|
+ }
|
|
+
|
|
/* dump core if supported by target binary format */
|
|
if (core_dump_signal(target_sig) && (ts->bprm->core_dump != NULL)) {
|
|
stop_all_tasks();
|
|
@@ -592,6 +596,8 @@ static void QEMU_NORETURN dump_core_and_abort(int target_sig)
|
|
target_sig, strsignal(host_sig), "core dumped" );
|
|
}
|
|
|
|
+no_core:
|
|
+
|
|
/* The proper exit code for dying from an uncaught signal is
|
|
* -<signal>. The kernel doesn't allow exit() or _exit() to pass
|
|
* a negative value. To get the proper exit code we need to
|