X-Git-Url: http://git.lttng.org./?a=blobdiff_plain;f=tests%2Fhello%2Fhello.c;h=68fca7a721ef06dfb0fe9960edfe177d25cb2803;hb=8e90eb06e6106d536519009cb297c479643b4150;hp=661ed40862dcb3ea5811a8d455703ad042f40566;hpb=9a396c3c901b720374bebc79d1bb9ab8f234ba38;p=lttng-ust.git diff --git a/tests/hello/hello.c b/tests/hello/hello.c index 661ed408..68fca7a7 100644 --- a/tests/hello/hello.c +++ b/tests/hello/hello.c @@ -33,7 +33,7 @@ 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) @@ -70,19 +70,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, + tracepoint(ust_tests_hello, tptest, i, netint, values, text, strlen(text), dbl, flt); //usleep(100000); } + fprintf(stderr, " done.\n"); return 0; }