]> git.ipfire.org Git - thirdparty/qemu.git/commit
linux-user: Exit not abort in die_with_backtrace
authorRichard Henderson <richard.henderson@linaro.org>
Tue, 22 Aug 2023 20:08:11 +0000 (13:08 -0700)
committerRichard Henderson <richard.henderson@linaro.org>
Wed, 18 Oct 2023 22:33:41 +0000 (15:33 -0700)
commitee72c47eebe119575b2bb684912bbb8c9efc9ba7
tree0ae12fb55c8b6bb5622c8ae0650e2ddd3a4b2f85
parentb8b50f1e9ac8007831c2df1bd0d728f420d5818c
linux-user: Exit not abort in die_with_backtrace

This line is supposed to be unreachable, but if we're going to
have it at all, SIGABRT via abort() is subject to the same signal
peril that created this function in the first place.

We can _exit immediately without peril.

Acked-by: Helge Deller <deller@gmx.de>
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
linux-user/signal.c