Browse Source
Add the bsd-user specific events and infrastructure. Only include the linux-user trace events for linux-user, not bsd-user. Signed-off-by: Stacey Son <sson@FreeBSD.org> Signed-off-by: Kyle Evans <kevans@freebsd.org> Signed-off-by: Warner Losh <imp@bsdimp.com> Reviewed-by: Peter Maydell <peter.maydell@linaro.org> Reviewed-by: Richard Henderson <richard.henderson@linaro.org>pull/205/head
4 changed files with 17 additions and 1 deletions
@ -0,0 +1,11 @@ |
|||
# See docs/tracing.txt for syntax documentation. |
|||
|
|||
# bsd-user/signal.c |
|||
user_setup_frame(void *env, uint64_t frame_addr) "env=%p frame_addr=0x%"PRIx64 |
|||
user_setup_rt_frame(void *env, uint64_t frame_addr) "env=%p frame_addr=0x%"PRIx64 |
|||
user_do_rt_sigreturn(void *env, uint64_t frame_addr) "env=%p frame_addr=0x%"PRIx64 |
|||
user_do_sigreturn(void *env, uint64_t frame_addr) "env=%p frame_addr=0x%"PRIx64 |
|||
user_dump_core_and_abort(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" |
|||
@ -0,0 +1 @@ |
|||
#include "trace/trace-bsd_user.h" |
|||
Loading…
Reference in new issue