Implement tracepoint event reset header
[lttng-ust.git] / include / lttng / tracepoint-event-reset.h
CommitLineData
d854088d
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/* Define to "nothing" all macros used for TRACEPOINT_EVENT */
15
16#undef TRACEPOINT_EVENT
17#define TRACEPOINT_EVENT(_provider, _name, _args, _fields)
18
19#undef TRACEPOINT_EVENT_CLASS
20#define TRACEPOINT_EVENT_CLASS(_provider, _name, _args, _fields)
21
22#undef TRACEPOINT_EVENT_INSTANCE
23#define TRACEPOINT_EVENT_INSTANCE(_provider, _template, _name, _args)
24
25#undef TP_ARGS
26#define TP_ARGS(...)
27
28#undef TP_FIELDS
29#define TP_FIELDS(...)
30
31#undef ctf_integer_ext
32#define ctf_integer_ext(_type, _item, _src, _byte_order, _base)
33
34#undef ctf_float
35#define ctf_float(_type, _item, _src)
36
37#undef ctf_array_encoded
38#define ctf_array_encoded(_type, _item, _src, _length, _encoding)
39
40#undef ctf_sequence_encoded
41#define ctf_sequence_encoded(_type, _item, _src, _length_type, \
42 _src_length, _encoding)
43
44#undef ctf_string
45#define ctf_string(_item, _src)
This page took 0.025147 seconds and 4 git commands to generate.