X-Git-Url: http://git.liburcu.org/?a=blobdiff_plain;f=tests%2Fhello%2Fhello.c;h=584d3f7b9f1b107d2d8a4986164127c6c2c45863;hb=64ef186fae5c5f8b11bb0047a04aa53302ac9f46;hp=e8eb78efc93adc2779f681825aca79e95adec909;hpb=1ea11eab9f65504b2d217ef16f53f52ff941c630;p=lttng-ust.git diff --git a/tests/hello/hello.c b/tests/hello/hello.c index e8eb78ef..584d3f7b 100644 --- a/tests/hello/hello.c +++ b/tests/hello/hello.c @@ -26,13 +26,16 @@ #include #include #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,22 +67,29 @@ 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; 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++) { - tracepoint(ust_tests_hello_tptest, i, values, + 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); + //usleep(100000); } + fprintf(stderr, " done.\n"); return 0; }