diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2015-11-13 13:52:21 +0100 |
---|---|---|
committer | Timothy Pearson <tpearson@raptorengineering.com> | 2019-11-29 19:28:20 -0600 |
commit | 69f363b831733c61d63424d211d8672c96121ddc (patch) | |
tree | a9a1bcc4e29f701d2c905a97cc7bd2817a974441 /trace-events | |
parent | 67f77bb143b6e36f9bf35091dc3be1225f8e33f9 (diff) | |
download | hqemu-69f363b831733c61d63424d211d8672c96121ddc.zip hqemu-69f363b831733c61d63424d211d8672c96121ddc.tar.gz |
linux-user: convert DEBUG_SIGNAL logging to tracepoints
"Unimplemented" messages go to stderr, everything else goes to tracepoints
Reviewed-by: Laurent Vivier <lvivier@redhat.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'trace-events')
-rw-r--r-- | trace-events | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/trace-events b/trace-events index 49f4523..fa504cf 100644 --- a/trace-events +++ b/trace-events @@ -1797,3 +1797,14 @@ qcrypto_tls_session_new(void *session, void *creds, const char *hostname, const # net/vhost-user.c vhost_user_event(const char *chr, int event) "chr: %s got event: %d" + +# linux-user/signal.c +user_setup_frame(void *env, uint64_t frame_addr) "env=%p frame_addr="PRIx64"" +user_setup_rt_frame(void *env, uint64_t frame_addr) "env=%p frame_addr="PRIx64"" +user_do_rt_sigreturn(void *env, uint64_t frame_addr) "env=%p frame_addr="PRIx64"" +user_do_sigreturn(void *env, uint64_t frame_addr) "env=%p frame_addr="PRIx64"" +user_force_sig(void *env, int target_sig, int host_sig) "env=%p signal %d (host %d)" +user_handle_signal(void *env, int target_sig) "env=%p signal %d" +user_host_signal(void *env, int host_sig, int target_sig) "env=%p signal %d (target %d(" +user_queue_signal(void *env, int target_sig) "env=%p signal %d" +user_s390x_restore_sigregs(void *env, uint64_t sc_psw_addr, uint64_t env_psw_addr) "env=%p frame psw.addr "PRIx64 " current psw.addr "PRIx64"" |