diff options
author | Peter Maydell <peter.maydell@linaro.org> | 2022-01-14 15:37:31 +0000 |
---|---|---|
committer | Laurent Vivier <laurent@vivier.eu> | 2022-01-18 12:41:42 +0100 |
commit | b5f9536643faa8a6a7b9e78d0944503a49a90fe3 (patch) | |
tree | 79905fefa7f1856727e81bb23cf781dc89aeb363 /linux-user/signal.c | |
parent | 5b602fc4ed1e621d892e6d17879a882512e3b553 (diff) | |
download | qemu-b5f9536643faa8a6a7b9e78d0944503a49a90fe3.zip qemu-b5f9536643faa8a6a7b9e78d0944503a49a90fe3.tar.gz qemu-b5f9536643faa8a6a7b9e78d0944503a49a90fe3.tar.bz2 |
linux-user: Rename user_force_sig tracepoint to match function name
In commit c599d4d6d6e9bfdb64 in 2016 we renamed the old force_sig()
function to dump_core_and_abort(), but we forgot to rename the
associated tracepoint. Rename the tracepoint to to match the
function it's called from.
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Message-Id: <20220114153732.3767229-3-peter.maydell@linaro.org>
Signed-off-by: Laurent Vivier <laurent@vivier.eu>
Diffstat (limited to 'linux-user/signal.c')
-rw-r--r-- | linux-user/signal.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/linux-user/signal.c b/linux-user/signal.c index f813b4f..bfbbeab 100644 --- a/linux-user/signal.c +++ b/linux-user/signal.c @@ -734,7 +734,7 @@ static void QEMU_NORETURN dump_core_and_abort(int target_sig) struct sigaction act; host_sig = target_to_host_signal(target_sig); - trace_user_force_sig(env, target_sig, host_sig); + trace_user_dump_core_and_abort(env, target_sig, host_sig); gdb_signalled(env, target_sig); /* dump core if supported by target binary format */ |