Update tracepoint comments
[lttng-ust.git] / include / lttng / tracepoint-event.h
CommitLineData
8511626a
MD
1/*
2 * Copyright (c) 2011 - Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
3 *
4 * THIS MATERIAL IS PROVIDED AS IS, WITH ABSOLUTELY NO WARRANTY EXPRESSED
5 * OR IMPLIED. ANY USE IS AT YOUR OWN RISK.
6 *
7 * Permission is hereby granted to use or copy this program
8 * for any purpose, provided the above notices are retained on all copies.
9 * Permission to modify the code and to distribute modified code is granted,
10 * provided the above notices are retained, and a notice that the code was
11 * modified is included with the above copyright notice.
12 */
13
14#ifdef __cplusplus
15extern "C" {
16#endif
17
18#ifdef TRACEPOINT_CREATE_PROBES
19
20#define __tp_stringify1(x) #x
21#define __tp_stringify(x) __tp_stringify1(x)
22
23#undef TRACEPOINT_EVENT_INSTANCE
24#define TRACEPOINT_EVENT_INSTANCE(_provider, _template, _name, _args) \
7f0aeeba 25 _DEFINE_TRACEPOINT(_provider, _name)
8511626a
MD
26
27#undef TRACEPOINT_EVENT
28#define TRACEPOINT_EVENT(_provider, _name, _args, _fields) \
7f0aeeba
MD
29 TRACEPOINT_EVENT_CLASS(_provider, _name, _TP_PARAMS(_args), \
30 _TP_PARAMS(_fields)) \
31 TRACEPOINT_EVENT_INSTANCE(_provider, _name, _name, \
32 _TP_PARAMS(_args))
8511626a
MD
33
34#define TRACEPOINT_INCLUDE __tp_stringify(TRACEPOINT_INCLUDE_FILE)
35
36#undef TRACEPOINT_CREATE_PROBES
37
38#define TRACEPOINT_HEADER_MULTI_READ
39#include TRACEPOINT_INCLUDE
1c324e59
MD
40
41#include <lttng/ust-tracepoint-event.h>
42
8511626a
MD
43#undef TRACEPOINT_HEADER_MULTI_READ
44
45#define TRACEPOINT_CREATE_PROBES
46
47#endif /* TRACEPOINT_CREATE_PROBES */
48
49#ifdef __cplusplus
50}
51#endif
This page took 0.024665 seconds and 4 git commands to generate.