Add runall.sh test
[urcu.git] / test_mutex.c
index 140bf64d8747d8d94214b7996102af579294c4b9..d48181082af7ab3a5c5aefd86ff716c96b5337d8 100644 (file)
@@ -65,7 +65,7 @@ static pthread_mutex_t lock;
 
 static volatile int test_go, test_stop;
 
-static int wdelay;
+static unsigned long wdelay;
 
 static volatile struct test_array test_array = { 8 };
 
@@ -183,7 +183,7 @@ void *thr_writer(void *data)
                if (unlikely(!test_duration_write()))
                        break;
                if (unlikely(wdelay))
-                       usleep(wdelay);
+                       loop_sleep(wdelay);
        }
 
        printf_verbose("thread_end %s, thread id : %lx, tid %lu\n",
@@ -270,14 +270,14 @@ int main(int argc, char **argv)
                                show_usage(argc, argv);
                                return -1;
                        }
-                       rduration = atoi(argv[++i]);
+                       rduration = atol(argv[++i]);
                        break;
                case 'd':
                        if (argc < i + 2) {
                                show_usage(argc, argv);
                                return -1;
                        }
-                       wdelay = atoi(argv[++i]);
+                       wdelay = atol(argv[++i]);
                        break;
                case 'v':
                        verbose_mode = 1;
@@ -287,7 +287,7 @@ int main(int argc, char **argv)
 
        printf_verbose("running test for %lu seconds, %u readers, %u writers.\n",
                duration, nr_readers, nr_writers);
-       printf_verbose("Writer delay : %u us.\n", wdelay);
+       printf_verbose("Writer delay : %lu loops.\n", wdelay);
        printf_verbose("Reader duration : %lu loops.\n", rduration);
        printf_verbose("thread %-6s, thread id : %lx, tid %lu\n",
                        "main", pthread_self(), (unsigned long)gettid());
@@ -343,7 +343,7 @@ int main(int argc, char **argv)
               tot_writes);
        printf("SUMMARY %-25s testdur %4lu nr_readers %3u rdur %6lu "
                "nr_writers %3u "
-               "wdelay %4u nr_reads %12llu nr_writes %12llu nr_ops %12llu\n",
+               "wdelay %6lu nr_reads %12llu nr_writes %12llu nr_ops %12llu\n",
                argv[0], duration, nr_readers, rduration,
                nr_writers, wdelay, tot_reads, tot_writes,
                tot_reads + tot_writes);
This page took 0.023412 seconds and 4 git commands to generate.