callstack context: use delimiter when stack is incomplete
[lttng-modules.git] / probes / lttng-tracepoint-event.h
CommitLineData
3bc29f0a
MD
1#ifndef LTTNG_TRACEPOINT_EVENT_H
2#define LTTNG_TRACEPOINT_EVENT_H
3
4/*
5 * lttng-tracepoint-event.h
6 *
7 * Copyright (C) 2014 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
8 *
9 * This library is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU Lesser General Public
11 * License as published by the Free Software Foundation; only
12 * version 2.1 of the License.
13 *
14 * This library is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * Lesser General Public License for more details.
18 *
19 * You should have received a copy of the GNU Lesser General Public
20 * License along with this library; if not, write to the Free Software
21 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
22 */
23
24#include <linux/tracepoint.h>
25
26/*
27 * If code defines LTTNG_INSTRUMENTATION before including the instrumentation
28 * header, generate the instrumentation static inlines. Else, it means
29 * we are a probe for the Linux kernel, and it is the probe responsibility
30 * to have already included the Linux kernel instrumentation header.
31 */
32#ifdef LTTNG_INSTRUMENTATION
33#define _LTTNG_INSTRUMENTATION(...) __VA_ARGS__
34#else
35#define _LTTNG_INSTRUMENTATION(...)
36#endif
37
f127e61e 38#define LTTNG_TRACEPOINT_EVENT(name, proto, args, fields) \
3bc29f0a 39 _LTTNG_INSTRUMENTATION(DECLARE_TRACE(name, PARAMS(proto), PARAMS(args)))
265822ae 40#define LTTNG_TRACEPOINT_EVENT_CODE(name, proto, args, _locvar, _code_pre, fields, _code_post) \
3bc29f0a 41 _LTTNG_INSTRUMENTATION(DECLARE_TRACE(name, PARAMS(proto), PARAMS(args)))
265822ae 42#define LTTNG_TRACEPOINT_EVENT_CODE_MAP(name, map, proto, args, _locvar, _code_pre, fields, _code_post) \
3bc29f0a 43 _LTTNG_INSTRUMENTATION(DECLARE_TRACE(name, PARAMS(proto), PARAMS(args)))
f127e61e 44#define LTTNG_TRACEPOINT_EVENT_MAP(name, map, proto, args, fields) \
3bc29f0a 45 _LTTNG_INSTRUMENTATION(DECLARE_TRACE(name, PARAMS(proto), PARAMS(args)))
f127e61e 46#define LTTNG_TRACEPOINT_EVENT_MAP_NOARGS(name, map, fields) \
3bc29f0a
MD
47 _LTTNG_INSTRUMENTATION(DECLARE_TRACE_NOARGS(name))
48
f127e61e 49#define LTTNG_TRACEPOINT_EVENT_CLASS(name, proto, args, fields)
265822ae
MD
50#define LTTNG_TRACEPOINT_EVENT_CLASS_CODE(_name, _proto, _args, _locvar, _code_pre, _fields, _code_post)
51#define LTTNG_TRACEPOINT_EVENT_CLASS_CODE_NOARGS(_name, _locvar, _code_pre, _fields, _code_post)
3bc29f0a
MD
52
53#define LTTNG_TRACEPOINT_EVENT_INSTANCE(template, name, proto, args) \
54 _LTTNG_INSTRUMENTATION(DECLARE_TRACE(name, PARAMS(proto), PARAMS(args)))
55#define LTTNG_TRACEPOINT_EVENT_INSTANCE_NOARGS(template, name) \
56 _LTTNG_INSTRUMENTATION(DECLARE_TRACE_NOARGS(name))
3bc29f0a
MD
57#define LTTNG_TRACEPOINT_EVENT_INSTANCE_MAP(_template, _name, _map, _proto, _args) \
58 _LTTNG_INSTRUMENTATION(DECLARE_TRACE(name, PARAMS(proto), PARAMS(args)))
59#define LTTNG_TRACEPOINT_EVENT_INSTANCE_MAP_NOARGS(_template, _name, _map) \
60 _LTTNG_INSTRUMENTATION(DECLARE_TRACE_NOARGS(name))
61
141ddf28
MD
62#define LTTNG_TRACEPOINT_ENUM(_name, _values)
63
3bc29f0a 64#endif /* LTTNG_TRACEPOINT_EVENT_H */
This page took 0.031527 seconds and 4 git commands to generate.