X-Git-Url: http://git.lttng.org./?a=blobdiff_plain;ds=sidebyside;f=tests%2Fhello%2Fhello.c;h=b265b348f2d0fa8615b194893b15065ecfdc6165;hb=e822f505be95ac8c30c7b535a7b48c05ed0c1293;hp=e8eb78efc93adc2779f681825aca79e95adec909;hpb=1ea11eab9f65504b2d217ef16f53f52ff941c630;p=lttng-ust.git diff --git a/tests/hello/hello.c b/tests/hello/hello.c index e8eb78ef..b265b348 100644 --- a/tests/hello/hello.c +++ b/tests/hello/hello.c @@ -28,6 +28,7 @@ #include #include "ust_tests_hello.h" +TRACEPOINT_LIB void inthandler(int sig) { @@ -76,10 +77,11 @@ int main(int argc, char **argv) sleep(1); - for (i = 0; i < 50; i++) { + //for (i = 0; i < 50; i++) { + for (i = 0; i < 1000000; i++) { tracepoint(ust_tests_hello_tptest, i, values, text, strlen(text), dbl, flt); - usleep(100000); + //usleep(100000); } return 0; }