Sign Up
Log In
Log In
or
Sign Up
Places
All Projects
Status Monitor
Collapse sidebar
SUSE:SLE-15-SP3:Update
qemu.20747
XXX-dont-dump-core-on-sigabort.patch
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
File XXX-dont-dump-core-on-sigabort.patch of Package qemu.20747
From: Alexander Graf <agraf@suse.de> Date: Mon, 21 Nov 2011 23:50:36 +0100 Subject: 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 73de934c65117c5caa0f2dabe8e2..be83f5e4030f2a6e90606f762396 100644 --- a/linux-user/signal.c +++ b/linux-user/signal.c @@ -632,6 +632,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(); @@ -649,6 +653,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
Locations
Projects
Search
Status Monitor
Help
OpenBuildService.org
Documentation
API Documentation
Code of Conduct
Contact
Support
@OBShq
Terms
openSUSE Build Service is sponsored by
The Open Build Service is an
openSUSE project
.
Sign Up
Log In
Places
Places
All Projects
Status Monitor