Tracepoint API change: add provider field
[lttng-ust.git] / tests / hello / hello.c
index 03d07b675e8e99107ec12c78bd6a5de1f4ef9815..cc23a577de3bf32a153fac9ebf053839a12ee22d 100644 (file)
 #include <fcntl.h>
 #include <signal.h>
 #include <string.h>
+#include <arpa/inet.h>
 
 #include "ust_tests_hello.h"
 
 void inthandler(int sig)
 {
        printf("in SIGUSR1 handler\n");
-       tracepoint(ust_tests_hello_tptest_sighandler);
+       tracepoint(ust_tests_hellotptest_sighandler);
 }
 
 int init_int_handler(void)
@@ -64,7 +65,7 @@ int init_int_handler(void)
 
 int main(int argc, char **argv)
 {
-       int i;
+       int i, netint;
        long values[] = { 1, 2, 3 };
        char text[10] = "test";
        double dbl = 2.0;
@@ -78,7 +79,8 @@ int main(int argc, char **argv)
 
        //for (i = 0; i < 50; i++) {
        for (i = 0; i < 1000000; i++) {
-               tracepoint(ust_tests_hello_tptest, i, values,
+               netint = htonl(i);
+               tracepoint(ust_tests_hello, tptest, i, netint, values,
                           text, strlen(text), dbl, flt);
                //usleep(100000);
        }
This page took 0.024224 seconds and 4 git commands to generate.