X-Git-Url: http://git.liburcu.org/?a=blobdiff_plain;f=tests%2Fhello%2Fhello.c;h=68c137ee304d043489c673713e1f2ab98d80cd58;hb=3e4e9902d1564c56a1193b133c6dffded0dc29db;hp=72a30d0996c9c51751492875e3061fd213921baa;hpb=c95f3a3ac6e7379f8c969492c18976fabb08894e;p=lttng-ust.git diff --git a/tests/hello/hello.c b/tests/hello/hello.c index 72a30d09..68c137ee 100644 --- a/tests/hello/hello.c +++ b/tests/hello/hello.c @@ -26,13 +26,22 @@ #include #include #include +/* + * Work-around inet.h missing struct mmsghdr forward declaration, with + * triggers a warning when system files warnings are enabled. + */ +struct mmsghdr; +#include +#include +#include +#define TRACEPOINT_DEFINE #include "ust_tests_hello.h" void inthandler(int sig) { printf("in SIGUSR1 handler\n"); - tracepoint(ust_tests_hello_tptest_sighandler); + tracepoint(ust_tests_hello, tptest_sighandler); } int init_int_handler(void) @@ -64,23 +73,30 @@ 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; + bool mybool = 123; /* should print "1" */ init_int_handler(); - printf("Hello, World!\n"); + if (argc == 2) + delay = atoi(argv[1]); + + fprintf(stderr, "Hello, World!\n"); - sleep(1); + sleep(delay); - //for (i = 0; i < 50; i++) { + fprintf(stderr, "Tracing... "); for (i = 0; i < 1000000; i++) { - tracepoint(ust_tests_hello_tptest, i, values, - text, strlen(text), dbl, flt); + netint = htonl(i); + tracepoint(ust_tests_hello, tptest, i, netint, values, + text, strlen(text), dbl, flt, mybool); //usleep(100000); } + fprintf(stderr, " done.\n"); return 0; }