Add -c option for read-side C.S. length to tests
[urcu.git] / test_rwlock.c
index 0fdaad60b9871641d30b7e1eca3007f3ff07ad06..4ec427b8be469e14f3f46b511b7d5744cc114d49 100644 (file)
@@ -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);
This page took 0.023181 seconds and 4 git commands to generate.