X-Git-Url: http://git.lttng.org/?a=blobdiff_plain;f=liblttng-ust-cyg-profile%2Flttng-ust-cyg-profile.c;h=d19f70a6e69b4be07955bb68a6ee8db439048f9c;hb=c7667bfebfa1d054ad8d54fd98ada3c86184e327;hp=d772e76b961a148d19bf04d56ae9481b697d99b5;hpb=70d654f22a6b52beddfb86ec3daa453073c356d2;p=lttng-ust.git diff --git a/liblttng-ust-cyg-profile/lttng-ust-cyg-profile.c b/liblttng-ust-cyg-profile/lttng-ust-cyg-profile.c index d772e76b..d19f70a6 100644 --- a/liblttng-ust-cyg-profile/lttng-ust-cyg-profile.c +++ b/liblttng-ust-cyg-profile/lttng-ust-cyg-profile.c @@ -17,12 +17,14 @@ */ #define _GNU_SOURCE +#define _LGPL_SOURCE #include #include #include #define TRACEPOINT_DEFINE #define TRACEPOINT_CREATE_PROBES +#define TP_IP_PARAM func_addr #include "lttng-ust-cyg-profile.h" void __cyg_profile_func_enter(void *this_fn, void *call_site) @@ -33,10 +35,10 @@ void __cyg_profile_func_exit(void *this_fn, void *call_site) void __cyg_profile_func_enter(void *this_fn, void *call_site) { - tracepoint(lttng_ust_cyg_profile, func_entry, this_fn); + tracepoint(lttng_ust_cyg_profile, func_entry, this_fn, call_site); } void __cyg_profile_func_exit(void *this_fn, void *call_site) { - tracepoint(lttng_ust_cyg_profile, func_exit); + tracepoint(lttng_ust_cyg_profile, func_exit, this_fn, call_site); }