aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorVadim Yanitskiy <axilirator@gmail.com>2017-09-04 00:42:38 +0700
committerVadim Yanitskiy <axilirator@gmail.com>2017-12-31 12:20:59 +0100
commit349219c14875705b8142d599f6af153d22a9a00e (patch)
treeb59e867498163275218f9ddd4022539cf585c841 /include
parenta8d46571cebb7f14501fa7bcf3c2eb86c473d8b2 (diff)
benchmark: move benchmark_dump() outside the library
The benchmark_dump() is only used by the osmo-gapk binary, and is intended to prepare and print benchmarking results to stderr, what is most likely unusable for the library users.
Diffstat (limited to 'include')
-rw-r--r--include/osmocom/gapk/benchmark.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/include/osmocom/gapk/benchmark.h b/include/osmocom/gapk/benchmark.h
index a404168..6cfc074 100644
--- a/include/osmocom/gapk/benchmark.h
+++ b/include/osmocom/gapk/benchmark.h
@@ -54,5 +54,3 @@ static inline void benchmark_stop(enum osmo_gapk_codec_type codec,
#define BENCHMARK_STOP(x,y) _cycles_stop = get_cycles(); \
benchmark_stop(x, y, _cycles_stop - _cycles_start); \
} while (0)
-
-void benchmark_dump(void);