Tracepoint API change: rename TRACEPOINT_SYSTEM to TRACEPOINT_PROVIDER
[lttng-ust.git] / tests / hello / hello.c
index 469561cc5641462dbb2066ff245939b9a14bb9f9..68fca7a721ef06dfb0fe9960edfe177d25cb2803 100644 (file)
 #include <sys/stat.h>
 #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)
@@ -39,6 +41,7 @@ int init_int_handler(void)
        int result;
        struct sigaction act;
 
+       memset(&act, 0, sizeof(act));
        result = sigemptyset(&act.sa_mask);
        if (result == -1) {
                perror("sigemptyset");
@@ -62,18 +65,29 @@ 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;
+       float flt = 2222.0;
+       int delay = 0;
 
        init_int_handler();
 
-       printf("Hello, World!\n");
+       if (argc == 2)
+               delay = atoi(argv[1]);
 
-       sleep(1);
+       fprintf(stderr, "Hello, World!\n");
 
-       for (i = 0; i < 50; i++) {
-               tracepoint(ust_tests_hello_tptest, i, values);
-               usleep(100000);
+       sleep(delay);
+
+       fprintf(stderr, "Tracing... ");
+       for (i = 0; i < 1000000; i++) {
+               netint = htonl(i);
+               tracepoint(ust_tests_hello, tptest, i, netint, values,
+                          text, strlen(text), dbl, flt);
+               //usleep(100000);
        }
+       fprintf(stderr, " done.\n");
        return 0;
 }
This page took 0.023916 seconds and 4 git commands to generate.