X-Git-Url: http://git.liburcu.org/?a=blobdiff_plain;f=tests%2Fhello%2Fhello.c;h=0c18c01a95a8e8ed9adad55b21c661c92a1c937e;hb=f121009f677db0f9444e0683e24315eed9c5973d;hp=b265b348f2d0fa8615b194893b15065ecfdc6165;hpb=e822f505be95ac8c30c7b535a7b48c05ed0c1293;p=lttng-ust.git diff --git a/tests/hello/hello.c b/tests/hello/hello.c index b265b348..0c18c01a 100644 --- a/tests/hello/hello.c +++ b/tests/hello/hello.c @@ -26,14 +26,17 @@ #include #include #include +#include +#include +#include +#define TRACEPOINT_DEFINE #include "ust_tests_hello.h" -TRACEPOINT_LIB 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) @@ -65,23 +68,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]); - sleep(1); + fprintf(stderr, "Hello, World!\n"); - //for (i = 0; i < 50; i++) { + sleep(delay); + + 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; }