X-Git-Url: https://git.lttng.org/?p=urcu.git;a=blobdiff_plain;f=test_perthreadlock.c;h=a2abb8df714c2e825aa31657032d46523135f6bf;hp=4f46d23c9da84fca94a8c7fe40ca2c44a585b119;hb=8b632babd61dd1708c4cf95f1f417469f8f6a528;hpb=b4fde1d45c43e18b0589a983509bea738c54cbce diff --git a/test_perthreadlock.c b/test_perthreadlock.c index 4f46d23..a2abb8d 100644 --- a/test_perthreadlock.c +++ b/test_perthreadlock.c @@ -75,6 +75,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. */ @@ -134,6 +137,8 @@ void *thr_reader(void *data) for (;;) { pthread_mutex_lock(&per_thread_lock[tidx].lock); assert(test_array.a == 8); + if (unlikely(rduration)) + usleep(rduration); pthread_mutex_unlock(&per_thread_lock[tidx].lock); nr_reads++; if (unlikely(!test_duration_read())) @@ -189,6 +194,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"); } @@ -253,6 +259,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);