X-Git-Url: http://git.lttng.org/?a=blobdiff_plain;f=liblttng-ust-cyg-profile%2Flttng-ust-cyg-profile.h;fp=liblttng-ust-cyg-profile%2Flttng-ust-cyg-profile.h;h=7629fb991c329419745cf99f0489cafedecadc78;hb=dd33005382c8852d04eef7f09f746c2fdfca1e52;hp=48a7c73574b1ebcfb918d731e16ce8aa2471691b;hpb=d3db6a40c99e4c4bd81be92413efb5c867baf6e4;p=lttng-ust.git diff --git a/liblttng-ust-cyg-profile/lttng-ust-cyg-profile.h b/liblttng-ust-cyg-profile/lttng-ust-cyg-profile.h index 48a7c735..7629fb99 100644 --- a/liblttng-ust-cyg-profile/lttng-ust-cyg-profile.h +++ b/liblttng-ust-cyg-profile/lttng-ust-cyg-profile.h @@ -33,9 +33,10 @@ extern "C" { #include TRACEPOINT_EVENT(lttng_ust_cyg_profile, func_entry, - TP_ARGS(void *, func_addr), + TP_ARGS(void *, func_addr, void *, call_site), TP_FIELDS( ctf_integer_hex(void *, addr, func_addr) + ctf_integer_hex(void *, call_site, func_addr) ) ) @@ -43,8 +44,11 @@ TRACEPOINT_LOGLEVEL(lttng_ust_cyg_profile, func_entry, TRACE_DEBUG_FUNCTION) TRACEPOINT_EVENT(lttng_ust_cyg_profile, func_exit, - TP_ARGS(void), - TP_FIELDS() + TP_ARGS(void *, func_addr, void *, call_site), + TP_FIELDS( + ctf_integer_hex(void *, addr, func_addr) + ctf_integer_hex(void *, call_site, func_addr) + ) ) TRACEPOINT_LOGLEVEL(lttng_ust_cyg_profile, func_exit,