X-Git-Url: https://git.lttng.org/?a=blobdiff_plain;f=liblttng-ust-cyg-profile%2Flttng-ust-cyg-profile.h;h=4316292548e17cfae9bf8c8cd9d80b5a4824de68;hb=aa91d50a66f278e26cde60e68467baa7f670942d;hp=7629fb991c329419745cf99f0489cafedecadc78;hpb=dd33005382c8852d04eef7f09f746c2fdfca1e52;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 7629fb99..43162925 100644 --- a/liblttng-ust-cyg-profile/lttng-ust-cyg-profile.h +++ b/liblttng-ust-cyg-profile/lttng-ust-cyg-profile.h @@ -35,8 +35,10 @@ extern "C" { TRACEPOINT_EVENT(lttng_ust_cyg_profile, func_entry, 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) + ctf_integer_hex(unsigned long, addr, + (unsigned long) func_addr) + ctf_integer_hex(unsigned long, call_site, + (unsigned long) call_site) ) ) @@ -46,8 +48,10 @@ TRACEPOINT_LOGLEVEL(lttng_ust_cyg_profile, func_entry, TRACEPOINT_EVENT(lttng_ust_cyg_profile, func_exit, 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) + ctf_integer_hex(unsigned long, addr, + (unsigned long) func_addr) + ctf_integer_hex(unsigned long, call_site, + (unsigned long) call_site) ) )