Clarify lib_ring_buffer_switch_slow() requirements
[lttng-ust.git] / liblttng-ust-cyg-profile / lttng-ust-cyg-profile.c
index d772e76b961a148d19bf04d56ae9481b697d99b5..d19f70a6e69b4be07955bb68a6ee8db439048f9c 100644 (file)
  */
 
 #define _GNU_SOURCE
+#define _LGPL_SOURCE
 #include <dlfcn.h>
 #include <sys/types.h>
 #include <stdio.h>
 
 #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);
 }
This page took 0.023346 seconds and 4 git commands to generate.