Tracepoint API change: combine TP_PROTO and TP_VARS into TP_ARGS, remove _NOARGS...
[lttng-ust.git] / include / lttng / tracepoint-event.h
1 /*
2 * Copyright (C) 2009 Steven Rostedt <srostedt@redhat.com>
3 * Copyright (C) 2011 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
4 *
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation;
8 * version 2.1 of the License.
9 *
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
14 *
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
18 *
19 *
20 * Trace files that want to automate creationg of all tracepoints defined
21 * in their file should include this file. The following are macros that the
22 * trace file may define:
23 *
24 * TRACEPOINT_PROVIDER defines the provider the tracepoint is for:
25 * < [com_company_]project_[component_] >
26 *
27 * TRACEPOINT_INCLUDE_FILE if the file name is something other than
28 * TRACEPOINT_PROVIDER.h. This macro may be defined to tell
29 * define_trace.h what file to include. Note, leave off the ".h".
30 *
31 * TRACEPOINT_INCLUDE_PATH if the path is something other than within
32 * the system's include/tracepoint/ path, then this macro can define
33 * the path to use. This path is relative to tracepoint-event.h, or
34 * to the include search path. Trick: Use a
35 * #define TRACEPOINT_INCLUDE_PATH .
36 * combined with -Ipath_to_header as compiler argument to allow
37 * searching for a header within your project build tree.
38 */
39
40 #ifdef __cplusplus
41 extern "C" {
42 #endif
43
44 #ifdef TRACEPOINT_CREATE_PROBES
45
46 /* Prevent recursion */
47 #undef TRACEPOINT_CREATE_PROBES
48
49 #ifndef __tp_stringify
50 #define __tp_stringify_1(x...) #x
51 #define __tp_stringify(x...) __tp_stringify_1(x)
52 #endif
53
54 #undef TRACEPOINT_EVENT
55 #define TRACEPOINT_EVENT(provider, name, args, fields) \
56 _DEFINE_TRACEPOINT(provider, name)
57
58 #undef TRACEPOINT_EVENT_INSTANCE
59 #define TRACEPOINT_EVENT_INSTANCE(provider, template, name, args) \
60 _DEFINE_TRACEPOINT(provider, name)
61
62 #undef TRACEPOINT_INCLUDE
63 #undef __TRACEPOINT_INCLUDE
64
65 #ifndef TRACEPOINT_INCLUDE_FILE
66 # define TRACEPOINT_INCLUDE_FILE TRACEPOINT_PROVIDER
67 # define UNDEF_TRACEPOINT_INCLUDE_FILE
68 #endif
69
70 #ifndef TRACEPOINT_INCLUDE_PATH
71 # define __TRACEPOINT_INCLUDE(provider) <tracepoint/provider.h>
72 # define UNDEF_TRACEPOINT_INCLUDE_PATH
73 #else
74 # define __TRACEPOINT_INCLUDE(provider) \
75 __tp_stringify(TRACEPOINT_INCLUDE_PATH/provider.h)
76 #endif
77
78 # define TRACEPOINT_INCLUDE(provider) __TRACEPOINT_INCLUDE(provider)
79
80 /* Let the trace headers be reread */
81 #define TRACEPOINT_HEADER_MULTI_READ
82
83 #include TRACEPOINT_INCLUDE(TRACEPOINT_INCLUDE_FILE)
84
85 #include <lttng/ust-tracepoint-event.h>
86
87 #undef TRACEPOINT_EVENT
88 #undef TRACEPOINT_EVENT_CLASS
89 #undef TRACEPOINT_EVENT_INSTANCE
90 #undef TRACEPOINT_HEADER_MULTI_READ
91
92 /* Only undef what we defined in this file */
93 #ifdef UNDEF_TRACEPOINT_INCLUDE_FILE
94 # undef TRACEPOINT_INCLUDE_FILE
95 # undef UNDEF_TRACEPOINT_INCLUDE_FILE
96 #endif
97
98 #ifdef UNDEF_TRACEPOINT_INCLUDE_PATH
99 # undef TRACEPOINT_INCLUDE_PATH
100 # undef UNDEF_TRACEPOINT_INCLUDE_PATH
101 #endif
102
103 /* We may be processing more files */
104 #define TRACEPOINT_CREATE_PROBES
105
106 #endif /* TRACEPOINT_CREATE_PROBES */
107
108 #ifdef __cplusplus
109 }
110 #endif
This page took 0.038159 seconds and 5 git commands to generate.