X-Git-Url: https://git.liburcu.org/?p=urcu.git;a=blobdiff_plain;f=tests%2Ftest_urcu_hash.c;h=9416224d8af115491d689ff4328078482591d78c;hp=514d0bcdcf20496805ef3fc97c90f3f51b6acb5a;hb=94df63189704b8f6483c737988df3728f5e13c2d;hpb=6ff854acfa013195bdb71dddc654ec76a4c296c9 diff --git a/tests/test_urcu_hash.c b/tests/test_urcu_hash.c index 514d0bc..9416224 100644 --- a/tests/test_urcu_hash.c +++ b/tests/test_urcu_hash.c @@ -201,9 +201,8 @@ unsigned long test_compare(const void *key1, size_t key1_len, void *thr_count(void *arg) { - printf_verbose("thread_begin %s, thread id : %lx, tid %lu\n", - "counter", (unsigned long) pthread_self(), - (unsigned long) gettid()); + printf_verbose("thread_begin %s, tid %lu\n", + "counter", urcu_get_thread_id()); rcu_register_thread(); @@ -267,7 +266,9 @@ void test_delete_all_nodes(struct cds_lfht *ht) void show_usage(int argc, char **argv) { - printf("Usage : %s nr_readers nr_writers duration (s)\n", argv[0]); + printf("Usage : %s nr_readers nr_writers duration (s) \n", + argv[0]); + printf("OPTIONS:\n"); #ifdef DEBUG_YIELD printf(" [-r] [-w] (yield reader and/or writer)\n"); #endif @@ -291,10 +292,12 @@ printf(" [not -u nor -s] Add entries (supports redundant keys).\n"); printf(" [-M size] Lookup pool size.\n"); printf(" [-N size] Write pool size.\n"); printf(" [-O size] Init pool size.\n"); - printf(" [-V] Validate lookups of init values (use with filled init pool, same lookup range, with different write range).\n"); + printf(" [-V] Validate lookups of init values.\n"); + printf(" (use with filled init pool, same lookup range,\n"); + printf(" with different write range)\n"); printf(" [-U] Uniqueness test.\n"); printf(" [-C] Number of hash chains.\n"); - printf("\n\n"); + printf("\n"); } int main(int argc, char **argv) @@ -544,9 +547,8 @@ int main(int argc, char **argv) write_pool_offset, write_pool_size); printf_verbose("Number of hash chains: %lu.\n", nr_hash_chains); - printf_verbose("thread %-6s, thread id : %lx, tid %lu\n", - "main", (unsigned long) pthread_self(), - (unsigned long) gettid()); + printf_verbose("thread %-6s, tid %lu\n", + "main", urcu_get_thread_id()); tid_reader = malloc(sizeof(*tid_reader) * nr_readers); if (!tid_reader) {