Delay reader in loops, not us
[urcu.git] / test_perthreadlock.c
index a2abb8df714c2e825aa31657032d46523135f6bf..0fc45d9e3b82e0ce1fb76046917ebce8174a2d8f 100644 (file)
@@ -75,9 +75,15 @@ static volatile struct test_array test_array = { 8 };
 
 static unsigned long duration;
 
-/* read-side C.S. duration, in us */
+/* read-side C.S. duration, in loops */
 static unsigned long rduration;
 
+static inline void loop_sleep(unsigned long l)
+{
+       while(l-- != 0)
+               cpu_relax();
+}
+
 /*
  * returns 0 if test should end.
  */
@@ -138,7 +144,7 @@ void *thr_reader(void *data)
                pthread_mutex_lock(&per_thread_lock[tidx].lock);
                assert(test_array.a == 8);
                if (unlikely(rduration))
-                       usleep(rduration);
+                       loop_sleep(rduration);
                pthread_mutex_unlock(&per_thread_lock[tidx].lock);
                nr_reads++;
                if (unlikely(!test_duration_read()))
@@ -194,7 +200,7 @@ void show_usage(int argc, char **argv)
        printf(" [-r] [-w] (yield reader and/or writer)");
 #endif
        printf(" [-d delay] (writer period (us))");
-       printf(" [-c duration] (reader C.S. duration (us))");
+       printf(" [-c duration] (reader C.S. duration (in loops))");
        printf(" [-a cpu#] [-a cpu#]... (affinity)");
        printf("\n");
 }
This page took 0.022716 seconds and 4 git commands to generate.