X-Git-Url: http://git.lttng.org/?a=blobdiff_plain;ds=sidebyside;f=tests%2Fhello%2Fhello.c;h=cc23a577de3bf32a153fac9ebf053839a12ee22d;hb=7083f0fecaa692b819e63f484daf38399f58c905;hp=b265b348f2d0fa8615b194893b15065ecfdc6165;hpb=e822f505be95ac8c30c7b535a7b48c05ed0c1293;p=lttng-ust.git diff --git a/tests/hello/hello.c b/tests/hello/hello.c index b265b348..cc23a577 100644 --- a/tests/hello/hello.c +++ b/tests/hello/hello.c @@ -26,14 +26,14 @@ #include #include #include +#include #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,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; @@ -75,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); }