tests: Move to kernel style SPDX license identifiers
[lttng-tools.git] / tests / regression / ust / ust-dl / libfoo-tp.h
1 /*
2 * Copyright (C) 2016 Jérémie Galarneau <jeremie.galarneau@efficios.com>
3 *
4 * SPDX-License-Identifier: MIT
5 *
6 */
7
8 #undef TRACEPOINT_PROVIDER
9 #define TRACEPOINT_PROVIDER libfoo
10
11 #undef TRACEPOINT_INCLUDE
12 #define TRACEPOINT_INCLUDE "./libfoo-tp.h"
13
14 #if !defined(_LIBFOO_TP_H) || defined(TRACEPOINT_HEADER_MULTI_READ)
15 #define _LIBFOO_TP_H
16
17 #include <lttng/tracepoint.h>
18
19 TRACEPOINT_EVENT(
20 libfoo,
21 foo,
22 TP_ARGS(void),
23 TP_FIELDS()
24 )
25
26 #endif /* _LIBFOO_TP_H */
27
28 #include <lttng/tracepoint-event.h>
This page took 0.02997 seconds and 5 git commands to generate.