test_urcu_hash*: initialize TLS seeds
authorMathieu Desnoyers <mathieu.desnoyers@efficios.com>
Wed, 26 Jun 2013 21:01:20 +0000 (17:01 -0400)
committerMathieu Desnoyers <mathieu.desnoyers@efficios.com>
Wed, 26 Jun 2013 21:01:20 +0000 (17:01 -0400)
Signed-off-by: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
tests/test_urcu_hash_rw.c
tests/test_urcu_hash_unique.c

index 48dc1a810c21f1ce921f2efc9d8da9c7c8a7a225..8802b9cd0a621d1d07fee0f4e7bfe368f0a287b6 100644 (file)
@@ -68,6 +68,8 @@ void *test_hash_rw_thr_reader(void *_count)
        printf_verbose("thread_begin %s, tid %lu\n",
                        "reader", urcu_get_thread_id());
 
        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();
        set_affinity();
 
        rcu_register_thread();
@@ -127,6 +129,8 @@ void *test_hash_rw_thr_writer(void *_count)
        printf_verbose("thread_begin %s, tid %lu\n",
                        "writer", urcu_get_thread_id());
 
        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();
        set_affinity();
 
        rcu_register_thread();
@@ -234,6 +238,8 @@ int test_hash_rw_populate_hash(void)
 
        printf("Starting rw test\n");
 
 
        printf("Starting rw test\n");
 
+       URCU_TLS(rand_lookup) = urcu_get_thread_id() ^ time(NULL);
+
        if ((add_unique || add_replace) && init_populate * 10 > init_pool_size) {
                printf("WARNING: required to populate %lu nodes (-k), but random "
 "pool is quite small (%lu values) and we are in add_unique (-u) or add_replace (-s) mode. Try with a "
        if ((add_unique || add_replace) && init_populate * 10 > init_pool_size) {
                printf("WARNING: required to populate %lu nodes (-k), but random "
 "pool is quite small (%lu values) and we are in add_unique (-u) or add_replace (-s) mode. Try with a "
index 40d9e80065d83978af2043f04283a28a1d0a5272..adbbde0db4f0c59ce751feec00cc4276763c57d3 100644 (file)
@@ -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());
 
        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();
        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());
 
        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();
        set_affinity();
 
        rcu_register_thread();
@@ -242,6 +246,8 @@ int test_hash_unique_populate_hash(void)
 
        printf("Starting uniqueness test.\n");
 
 
        printf("Starting uniqueness test.\n");
 
+       URCU_TLS(rand_lookup) = urcu_get_thread_id() ^ time(NULL);
+
        if (!init_populate)
                return 0;
 
        if (!init_populate)
                return 0;
 
This page took 0.025971 seconds and 4 git commands to generate.