X-Git-Url: https://git.lttng.org/?a=blobdiff_plain;f=tests%2Fbenchmark%2Fbench.c;h=fcd373ad973ac1edc3d8a8806b6a762a43f2442c;hb=2137460a3901f8abdae909cf72e43e6ac23507ec;hp=166dc910b426c24fda47af5f1c49a7649eeb6904;hpb=b670e9e80fd344432cb56e3c168b60103acd77d0;p=lttng-ust.git diff --git a/tests/benchmark/bench.c b/tests/benchmark/bench.c index 166dc910..fcd373ad 100644 --- a/tests/benchmark/bench.c +++ b/tests/benchmark/bench.c @@ -16,7 +16,7 @@ #include #ifdef TRACING -#define TRACEPOINT_DEFINE +#define LTTNG_UST_TRACEPOINT_DEFINE #include "ust_tests_benchmark.h" #endif @@ -37,6 +37,7 @@ static unsigned long duration; static volatile int test_go, test_stop; +static void do_stuff(void) { int i; @@ -47,11 +48,13 @@ void do_stuff(void) for (i = 0; i < 100; i++) cmm_barrier(); #ifdef TRACING - tracepoint(ust_tests_benchmark, tpbench, v); + lttng_ust_tracepoint(ust_tests_benchmark, tpbench, v); #endif } -void *function(void *arg) + +static +void *function(void *arg __attribute__((unused))) { unsigned long long nr_loops = 0; struct thread_counter *thread_counter = arg; @@ -69,6 +72,7 @@ void *function(void *arg) return NULL; } +static void usage(char **argv) { printf("Usage: %s nr_threads duration(s) \n", argv[0]); printf("OPTIONS:\n");