tests: Move to kernel style SPDX license identifiers
[lttng-tools.git] / tests / regression / ust / exit-fast / ust_tests_exitfast.h
1 /*
2 * Copyright (C) 2011-2012 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
3 * Copyright (C) 2011-2012 Matthew Khouzam <matthew.khouzam@ericsson.com>
4 *
5 * SPDX-License-Identifier: MIT
6 *
7 */
8
9 #undef TRACEPOINT_PROVIDER
10 #define TRACEPOINT_PROVIDER ust_tests_exitfast
11
12 #if !defined(_TRACEPOINT_UST_TESTS_EXITFAST_H) || defined(TRACEPOINT_HEADER_MULTI_READ)
13 #define _TRACEPOINT_UST_TESTS_EXITFAST_H
14
15 #include <lttng/tracepoint.h>
16
17 TRACEPOINT_EVENT(ust_tests_exitfast, message,
18 TP_ARGS(char *, text),
19 TP_FIELDS(ctf_string(message, text))
20 )
21
22 TRACEPOINT_LOGLEVEL(ust_tests_exitfast, message, TRACE_INFO)
23
24 #endif /* _TRACEPOINT_UST_TESTS_EXITFAST_H */
25
26 #undef TRACEPOINT_INCLUDE
27 #define TRACEPOINT_INCLUDE "./ust_tests_exitfast.h"
28
29 #include <lttng/tracepoint-event.h>
This page took 0.029965 seconds and 5 git commands to generate.