static struct cds_wfs_stack s;
-void *thr_enqueuer(void *_count)
+static void *thr_enqueuer(void *_count)
{
unsigned long long *count = _count;
}
}
-void *thr_dequeuer(void *_count)
+static void *thr_dequeuer(void *_count)
{
unsigned long long *count = _count;
unsigned int counter;
return ((void*)2);
}
-void test_end(struct cds_wfs_stack *s, unsigned long long *nr_dequeues)
+static void test_end(struct cds_wfs_stack *s, unsigned long long *nr_dequeues)
{
struct cds_wfs_node *node;
} while (node);
}
-void show_usage(int argc, char **argv)
+static void show_usage(int argc, char **argv)
{
printf("Usage : %s nr_dequeuers nr_enqueuers duration (s)", argv[0]);
printf(" [-d delay] (enqueuer period (in loops))");
printf_verbose("pop test activated.\n");
if (test_pop_all)
printf_verbose("pop_all test activated.\n");
+ if (test_sync == TEST_SYNC_MUTEX)
+ printf_verbose("External sync: mutex.\n");
+ else
+ printf_verbose("External sync: none.\n");
printf_verbose("Writer delay : %lu loops.\n", rduration);
printf_verbose("Reader duration : %lu loops.\n", wdelay);
printf_verbose("thread %-6s, thread id : %lx, tid %lu\n",