1 /* 2 * Copyright 2014, General Dynamics C4 Systems 3 * 4 * SPDX-License-Identifier: GPL-2.0-only 5 */ 6 7 #if CONFIG_MAX_NUM_TRACE_POINTS > 0 8 9 #include <benchmark/benchmark.h> 10 #include <arch/benchmark.h> 11 #include <arch/machine/hardware.h> 12 13 timestamp_t ksEntries[CONFIG_MAX_NUM_TRACE_POINTS]; 14 bool_t ksStarted[CONFIG_MAX_NUM_TRACE_POINTS]; 15 timestamp_t ksExit; 16 seL4_Word ksLogIndex = 0; 17 seL4_Word ksLogIndexFinalized = 0; 18 19 #endif /* CONFIG_MAX_NUM_TRACE_POINTS > 0 */ 20