Fix dynamic linking with GNU gold linker
[lttng-ust.git] / tests / hello / hello.c
index cc23a577de3bf32a153fac9ebf053839a12ee22d..584d3f7b9f1b107d2d8a4986164127c6c2c45863 100644 (file)
@@ -27,7 +27,9 @@
 #include <signal.h>
 #include <string.h>
 #include <arpa/inet.h>
+#include <stdlib.h>
 
+#define TRACEPOINT_DEFINE
 #include "ust_tests_hello.h"
 
 void inthandler(int sig)
@@ -70,19 +72,24 @@ int main(int argc, char **argv)
        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(10);
+       fprintf(stderr, "Hello, World!\n");
 
-       //for (i = 0; i < 50; i++) {
+       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.024668 seconds and 4 git commands to generate.