X-Git-Url: https://git.lttng.org/?p=urcu.git;a=blobdiff_plain;f=test_rwlock.c;h=a6f31e31f1e7328de9a0dc2303c5591b2f2b41db;hp=4ec427b8be469e14f3f46b511b7d5744cc114d49;hb=daddf5b0bf1ec7aeaa56c278cf4c1dd1094c174a;hpb=8b632babd61dd1708c4cf95f1f417469f8f6a528 diff --git a/test_rwlock.c b/test_rwlock.c index 4ec427b..a6f31e3 100644 --- a/test_rwlock.c +++ b/test_rwlock.c @@ -71,9 +71,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. */ @@ -131,7 +137,7 @@ void *thr_reader(void *_count) pthread_rwlock_rdlock(&lock); assert(test_array.a == 8); if (unlikely(rduration)) - usleep(rduration); + loop_sleep(rduration); pthread_rwlock_unlock(&lock); nr_reads++; if (unlikely(!test_duration_read())) @@ -182,7 +188,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"); }