X-Git-Url: https://git.lttng.org/?p=urcu.git;a=blobdiff_plain;f=test_rwlock.c;h=4ec427b8be469e14f3f46b511b7d5744cc114d49;hp=0fdaad60b9871641d30b7e1eca3007f3ff07ad06;hb=8b632babd61dd1708c4cf95f1f417469f8f6a528;hpb=b4fde1d45c43e18b0589a983509bea738c54cbce diff --git a/test_rwlock.c b/test_rwlock.c index 0fdaad6..4ec427b 100644 --- a/test_rwlock.c +++ b/test_rwlock.c @@ -71,6 +71,9 @@ static volatile struct test_array test_array = { 8 }; static unsigned long duration; +/* read-side C.S. duration, in us */ +static unsigned long rduration; + /* * returns 0 if test should end. */ @@ -127,6 +130,8 @@ void *thr_reader(void *_count) for (;;) { pthread_rwlock_rdlock(&lock); assert(test_array.a == 8); + if (unlikely(rduration)) + usleep(rduration); pthread_rwlock_unlock(&lock); nr_reads++; if (unlikely(!test_duration_read())) @@ -177,6 +182,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(" [-a cpu#] [-a cpu#]... (affinity)"); printf("\n"); } @@ -241,6 +247,13 @@ int main(int argc, char **argv) use_affinity = 1; printf("Adding CPU %d affinity\n", a); break; + case 'c': + if (argc < i + 2) { + show_usage(argc, argv); + return -1; + } + rduration = atoi(argv[++i]); + break; case 'd': if (argc < i + 2) { show_usage(argc, argv);