Tracepoint API namespacing 'TRACEPOINT_DEFINE'
[lttng-ust.git] / doc / examples / easy-ust / sample.c
index 36509ebc4c3bf3b70a3b812e058cfa8dcdd6093c..101d10d79d0b24b1075ff4b3ecbba98b0c1842b6 100644 (file)
@@ -8,10 +8,10 @@
 #include <unistd.h>
 
 /*
- * We need to define TRACEPOINT_DEFINE in one C file in the program
+ * We need to define LTTNG_UST_TRACEPOINT_DEFINE in one C file in the program
  * before including provider headers.
  */
-#define TRACEPOINT_DEFINE
+#define LTTNG_UST_TRACEPOINT_DEFINE
 #include "sample_component_provider.h"
 
 int main(void)
@@ -19,7 +19,7 @@ int main(void)
        int i = 0;
 
        for (i = 0; i < 100000; i++) {
-               tracepoint(sample_component, message, "Hello World");
+               lttng_ust_tracepoint(sample_component, message, "Hello World");
                usleep(1);
        }
        return 0;
This page took 0.025125 seconds and 4 git commands to generate.