1/*
2 * Copyright 2017, Data61
3 * Commonwealth Scientific and Industrial Research Organisation (CSIRO)
4 * ABN 41 687 119 230.
5 *
6 * This software may be distributed and modified according to the terms of
7 * the BSD 2-Clause license. Note that NO WARRANTY is provided.
8 * See "LICENSE_BSD2.txt" for details.
9 *
10 * @TAG(DATA61_BSD)
11 */
12
13#ifndef BENCHMARK_TRACE_POINTS_TYPES_H
14#define BENCHMARK_TRACE_POINTS_TYPES_H
15
16#ifdef HAVE_AUTOCONF
17#include <autoconf.h>
18#endif
19
20#ifdef CONFIG_BENCHMARK_TRACEPOINTS
21typedef struct benchmark_tracepoint_log_entry {
22    seL4_Word  id;
23    seL4_Word  duration;
24} benchmark_tracepoint_log_entry_t;
25#endif /* CONFIG_BENCHMARK_TRACEPOINTS */
26
27#endif /* BENCHMARK_TRACE_POINTS_TYPES_H */
28