X-Git-Url: https://git.lttng.org/?a=blobdiff_plain;f=tests%2Ftest_urcu_hash_rw.c;fp=tests%2Ftest_urcu_hash_rw.c;h=f30207d000ca039f0c3394b0fefce3bbb41aecb7;hb=6ff854acfa013195bdb71dddc654ec76a4c296c9;hp=3eb72924cd79a3d0651efbf7832198d9df8d1bb7;hpb=8cbc3cdca7f1320e3c2412654091fe94931ce62b;p=urcu.git diff --git a/tests/test_urcu_hash_rw.c b/tests/test_urcu_hash_rw.c index 3eb7292..f30207d 100644 --- a/tests/test_urcu_hash_rw.c +++ b/tests/test_urcu_hash_rw.c @@ -66,7 +66,8 @@ void *test_hash_rw_thr_reader(void *_count) struct cds_lfht_iter iter; printf_verbose("thread_begin %s, thread id : %lx, tid %lu\n", - "reader", pthread_self(), (unsigned long)gettid()); + "reader", (unsigned long) pthread_self(), + (unsigned long) gettid()); set_affinity(); @@ -107,7 +108,8 @@ void *test_hash_rw_thr_reader(void *_count) *count = URCU_TLS(nr_reads); printf_verbose("thread_end %s, thread id : %lx, tid %lu\n", - "reader", pthread_self(), (unsigned long)gettid()); + "reader", (unsigned long) pthread_self(), + (unsigned long) gettid()); printf_verbose("readid : %lx, lookupfail %lu, lookupok %lu\n", pthread_self(), URCU_TLS(lookup_fail), URCU_TLS(lookup_ok)); @@ -124,7 +126,8 @@ void *test_hash_rw_thr_writer(void *_count) int ret; printf_verbose("thread_begin %s, thread id : %lx, tid %lu\n", - "writer", pthread_self(), (unsigned long)gettid()); + "writer", (unsigned long) pthread_self(), + (unsigned long) gettid()); set_affinity(); @@ -209,9 +212,10 @@ void *test_hash_rw_thr_writer(void *_count) rcu_unregister_thread(); printf_verbose("thread_end %s, thread id : %lx, tid %lu\n", - "writer", pthread_self(), (unsigned long)gettid()); + "writer", (unsigned long) pthread_self(), + (unsigned long) gettid()); printf_verbose("info id %lx: nr_add %lu, nr_addexist %lu, nr_del %lu, " - "nr_delnoent %lu\n", pthread_self(), URCU_TLS(nr_add), + "nr_delnoent %lu\n", (unsigned long) pthread_self(), URCU_TLS(nr_add), URCU_TLS(nr_addexist), URCU_TLS(nr_del), URCU_TLS(nr_delnoent)); count->update_ops = URCU_TLS(nr_writes);