From 4e530464b00db308480ce9036b78bb125bb86477 Mon Sep 17 00:00:00 2001 From: Sebastian Huber Date: Sat, 15 Jan 2022 19:45:46 +0100 Subject: bsps: Default to CPU counter benchmark timer Most BSPs which used the stubbed benachmark timer provide a CPU counter. All BSPs provide at least a stub CPU counter. Simply use the benchmark timer implementation using the CPU counter. --- bsps/shared/dev/btimer/btimer-stub.c | 30 ------------------------------ 1 file changed, 30 deletions(-) delete mode 100644 bsps/shared/dev/btimer/btimer-stub.c (limited to 'bsps/shared/dev') diff --git a/bsps/shared/dev/btimer/btimer-stub.c b/bsps/shared/dev/btimer/btimer-stub.c deleted file mode 100644 index d1e3313115..0000000000 --- a/bsps/shared/dev/btimer/btimer-stub.c +++ /dev/null @@ -1,30 +0,0 @@ -/* - * This file implements a stub benchmark timer that is sufficient to - * satisfy linking the RTEMS Benchmarks. - * - * COPYRIGHT (c) 1989-2001. - * On-Line Applications Research Corporation (OAR). - */ - -#include -#include - -bool benchmark_timer_find_average_overhead; - -void benchmark_timer_initialize(void) -{ -} - -benchmark_timer_t benchmark_timer_read(void) -{ - if (benchmark_timer_find_average_overhead) - return 1; - return 0; -} - -void benchmark_timer_disable_subtracting_average_overhead( - bool find_flag -) -{ - benchmark_timer_find_average_overhead = find_flag; -} -- cgit v1.2.3