Tracepoint API change: add provider field
[lttng-ust.git] / tests / hello / hello.c
index 72a30d0996c9c51751492875e3061fd213921baa..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;
@@ -74,11 +75,12 @@ int main(int argc, char **argv)
 
        printf("Hello, World!\n");
 
-       sleep(1);
+       sleep(10);
 
        //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.028521 seconds and 4 git commands to generate.