Fix lttng-gen-tp: Template file must end in .tp
[lttng-ust.git] / include / lttng / tracepoint-event.h
CommitLineData
8511626a
MD
1/*
2 * Copyright (c) 2011 - Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
3 *
e92f3e28
MD
4 * Permission is hereby granted, free of charge, to any person obtaining a copy
5 * of this software and associated documentation files (the "Software"), to deal
6 * in the Software without restriction, including without limitation the rights
7 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8 * copies of the Software, and to permit persons to whom the Software is
9 * furnished to do so, subject to the following conditions:
8511626a 10 *
e92f3e28
MD
11 * The above copyright notice and this permission notice shall be included in
12 * all copies or substantial portions of the Software.
d2428e87
MD
13 *
14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
19 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
20 * SOFTWARE.
8511626a
MD
21 */
22
23#ifdef __cplusplus
24extern "C" {
25#endif
26
27#ifdef TRACEPOINT_CREATE_PROBES
28
29#define __tp_stringify1(x) #x
30#define __tp_stringify(x) __tp_stringify1(x)
31
32#undef TRACEPOINT_EVENT_INSTANCE
deb6e540 33#define TRACEPOINT_EVENT_INSTANCE(_provider, _template, _name, _args)
8511626a
MD
34
35#undef TRACEPOINT_EVENT
36#define TRACEPOINT_EVENT(_provider, _name, _args, _fields) \
7f0aeeba
MD
37 TRACEPOINT_EVENT_CLASS(_provider, _name, _TP_PARAMS(_args), \
38 _TP_PARAMS(_fields)) \
39 TRACEPOINT_EVENT_INSTANCE(_provider, _name, _name, \
40 _TP_PARAMS(_args))
8511626a
MD
41
42#define TRACEPOINT_INCLUDE __tp_stringify(TRACEPOINT_INCLUDE_FILE)
43
44#undef TRACEPOINT_CREATE_PROBES
45
46#define TRACEPOINT_HEADER_MULTI_READ
47#include TRACEPOINT_INCLUDE
1c324e59
MD
48
49#include <lttng/ust-tracepoint-event.h>
50
8511626a
MD
51#undef TRACEPOINT_HEADER_MULTI_READ
52
53#define TRACEPOINT_CREATE_PROBES
54
55#endif /* TRACEPOINT_CREATE_PROBES */
56
57#ifdef __cplusplus
58}
59#endif
This page took 0.025273 seconds and 4 git commands to generate.