X-Git-Url: http://git.lttng.org./?a=blobdiff_plain;ds=sidebyside;f=tests%2Fust%2Flow-throughput%2Fmain.c;h=06ab9ef825ae20c6c73c08ae7d9091aa0dfceabe;hb=26b53d3b7ce1812a2ebc2c7153a50d35bba2a270;hp=c8802e7df5262adbcbb90fd44f1363fa1e9988e1;hpb=4d5b973e8e468bf99fc9229b9b7a67bfdfe09924;p=lttng-tools.git diff --git a/tests/ust/low-throughput/main.c b/tests/ust/low-throughput/main.c index c8802e7df..06ab9ef82 100644 --- a/tests/ust/low-throughput/main.c +++ b/tests/ust/low-throughput/main.c @@ -39,18 +39,15 @@ static void *th_event_minute(void *data) /* 20 minutes tracepoint */ if ((i % 20) == 0) { tracepoint(tp, slow, i, "twenty"); - printf("Twenty: %d\n", i); } /* 10 minutes tracepoint */ if ((i % 10) == 0) { tracepoint(tp, slow, i, "ten"); - printf("Ten: %d\n", i); } /* 1 minute tracepoint */ tracepoint(tp, slow, i, "one"); - printf("One: %d\n", i); } return NULL;