X-Git-Url: https://git.lttng.org/?p=urcu.git;a=blobdiff_plain;f=test_mutex.c;h=54d83cc025976a91b5df10207854ceab47d8dd79;hp=97059baac67baf5b76e615d55b9688020c6d83d6;hb=cda3c71d5a0aca557840ae7744fa1c23ba43944e;hpb=4bad7d45799f5856cc14425aa7ddb2e111a3c5b7 diff --git a/test_mutex.c b/test_mutex.c index 97059ba..54d83cc 100644 --- a/test_mutex.c +++ b/test_mutex.c @@ -156,7 +156,7 @@ void *thr_reader(void *data) } tot_nr_reads[tidx] = nr_reads; - printf("thread_end %s, thread id : %lx, tid %lu\n", + printf_verbose("thread_end %s, thread id : %lx, tid %lu\n", "reader", pthread_self(), (unsigned long)gettid()); return ((void*)1); @@ -341,8 +341,9 @@ int main(int argc, char **argv) printf_verbose("total number of reads : %llu, writes %llu\n", tot_reads, tot_writes); - printf("SUMMARY %s testdur %lu nr_readers %u rdur %lu nr_writers %u " - "wdelay %u nr_reads %llu nr_writes %llu nr_ops %llu\n", + printf("SUMMARY %-15s testdur %4lu nr_readers %3u rdur %6lu " + "nr_writers %3u " + "wdelay %4u nr_reads %12llu nr_writes %12llu nr_ops %12llu\n", argv[0], duration, nr_readers, rduration, nr_writers, wdelay, tot_reads, tot_writes, tot_reads + tot_writes);