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
13timestamp_t ksEntries[CONFIG_MAX_NUM_TRACE_POINTS];
14bool_t ksStarted[CONFIG_MAX_NUM_TRACE_POINTS];
15timestamp_t ksExit;
16seL4_Word ksLogIndex = 0;
17seL4_Word ksLogIndexFinalized = 0;
18
19#endif /* CONFIG_MAX_NUM_TRACE_POINTS > 0 */
20