aboutsummaryrefslogtreecommitdiff
path: root/tests/tracetool/ust.h
blob: b7acd0c39b15500e3793042ebef8a83da775c843 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
/* This file is autogenerated by tracetool, do not edit. */
/* SPDX-License-Identifier: GPL-2.0-or-later */

#ifndef TRACE_TESTSUITE_GENERATED_TRACERS_H
#define TRACE_TESTSUITE_GENERATED_TRACERS_H

#include "trace/control.h"

extern TraceEvent _TRACE_TEST_BLAH_EVENT;
extern TraceEvent _TRACE_TEST_WIBBLE_EVENT;
extern uint16_t _TRACE_TEST_BLAH_DSTATE;
extern uint16_t _TRACE_TEST_WIBBLE_DSTATE;
#define TRACE_TEST_BLAH_ENABLED 1
#define TRACE_TEST_WIBBLE_ENABLED 1
#include <lttng/tracepoint.h>
#include "trace-ust-testsuite.h"

/* tracepoint_enabled() was introduced in LTTng UST 2.7 */
#ifndef tracepoint_enabled
#define tracepoint_enabled(a, b) true
#endif


#define TRACE_TEST_BLAH_BACKEND_DSTATE() ( \
    tracepoint_enabled(qemu, test_blah) || \
    false)

static inline void trace_test_blah(void *context, const char *filename)
{
    tracepoint(qemu, test_blah, context, filename);
}

#define TRACE_TEST_WIBBLE_BACKEND_DSTATE() ( \
    tracepoint_enabled(qemu, test_wibble) || \
    false)

static inline void trace_test_wibble(void *context, int value)
{
    tracepoint(qemu, test_wibble, context, value);
}
#endif /* TRACE_TESTSUITE_GENERATED_TRACERS_H */