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