X-Git-Url: https://git.lttng.org/?p=lttng-tools.git;a=blobdiff_plain;f=tests%2Fust%2Flow-throughput%2Fmain.c;h=06ab9ef825ae20c6c73c08ae7d9091aa0dfceabe;hp=c8802e7df5262adbcbb90fd44f1363fa1e9988e1;hb=d3d6d2a1388655959d3a0c399bab15db12546088;hpb=8acbe07dff3442a327b08e1398fadfde3ace77c3 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;