Hide internal tracepoint and providers data symbols
[lttng-ust.git] / src / lib / lttng-ust-cyg-profile / lttng-ust-cyg-profile-fast.c
index bee7ac04d0da2a987cc52bb4b46431fde5a0be8a..026734d5615326ab1eafbde250929af55da9b77d 100644 (file)
@@ -9,9 +9,12 @@
 #include <sys/types.h>
 #include <stdio.h>
 
-#define TRACEPOINT_DEFINE
-#define TRACEPOINT_CREATE_PROBES
-#define TP_IP_PARAM func_addr
+#define LTTNG_UST_TRACEPOINT_HIDDEN_DEFINITION
+#define LTTNG_UST_TRACEPOINT_PROVIDER_HIDDEN_DEFINITION
+
+#define LTTNG_UST_TRACEPOINT_DEFINE
+#define LTTNG_UST_TRACEPOINT_CREATE_PROBES
+#define LTTNG_UST_TP_IP_PARAM func_addr
 #include "lttng-ust-cyg-profile-fast.h"
 
 void __cyg_profile_func_enter(void *this_fn, void *call_site)
@@ -22,10 +25,10 @@ void __cyg_profile_func_exit(void *this_fn, void *call_site)
 
 void __cyg_profile_func_enter(void *this_fn, void *call_site __attribute__((unused)))
 {
-       tracepoint(lttng_ust_cyg_profile_fast, func_entry, this_fn);
+       lttng_ust_tracepoint(lttng_ust_cyg_profile_fast, func_entry, this_fn);
 }
 
 void __cyg_profile_func_exit(void *this_fn, void *call_site __attribute__((unused)))
 {
-       tracepoint(lttng_ust_cyg_profile_fast, func_exit, this_fn);
+       lttng_ust_tracepoint(lttng_ust_cyg_profile_fast, func_exit, this_fn);
 }
This page took 0.023943 seconds and 4 git commands to generate.