X-Git-Url: https://git.liburcu.org/?p=urcu.git;a=blobdiff_plain;f=tests%2Ftest_urcu_hash_unique.c;h=adbbde0db4f0c59ce751feec00cc4276763c57d3;hp=40d9e80065d83978af2043f04283a28a1d0a5272;hb=98f483d24f69785a7fb2e988f1053c34e84a4e61;hpb=b5e35d2dfb026d7f06eec10b3d4794646680429f diff --git a/tests/test_urcu_hash_unique.c b/tests/test_urcu_hash_unique.c index 40d9e80..adbbde0 100644 --- a/tests/test_urcu_hash_unique.c +++ b/tests/test_urcu_hash_unique.c @@ -66,6 +66,8 @@ void *test_hash_unique_thr_reader(void *_count) printf_verbose("thread_begin %s, tid %lu\n", "reader", urcu_get_thread_id()); + URCU_TLS(rand_lookup) = urcu_get_thread_id() ^ time(NULL); + set_affinity(); rcu_register_thread(); @@ -129,6 +131,8 @@ void *test_hash_unique_thr_writer(void *_count) printf_verbose("thread_begin %s, tid %lu\n", "writer", urcu_get_thread_id()); + URCU_TLS(rand_lookup) = urcu_get_thread_id() ^ time(NULL); + set_affinity(); rcu_register_thread(); @@ -242,6 +246,8 @@ int test_hash_unique_populate_hash(void) printf("Starting uniqueness test.\n"); + URCU_TLS(rand_lookup) = urcu_get_thread_id() ^ time(NULL); + if (!init_populate) return 0;