1/*
2 * Copyright 2014, General Dynamics C4 Systems
3 *
4 * This software may be distributed and modified according to the terms of
5 * the GNU General Public License version 2. Note that NO WARRANTY is provided.
6 * See "LICENSE_GPLv2.txt" for details.
7 *
8 * @TAG(GD_GPL)
9 */
10
11#if CONFIG_MAX_NUM_TRACE_POINTS > 0
12
13#include <benchmark/benchmark.h>
14#include <arch/benchmark.h>
15
16timestamp_t ksEntries[CONFIG_MAX_NUM_TRACE_POINTS];
17bool_t ksStarted[CONFIG_MAX_NUM_TRACE_POINTS];
18timestamp_t ksExit;
19seL4_Word ksLogIndex = 0;
20seL4_Word ksLogIndexFinalized = 0;
21
22#endif /* CONFIG_MAX_NUM_TRACE_POINTS > 0 */
23