TRACEPOINT_EVENT: add *_nowrite fields for filter
[lttng-ust.git] / include / lttng / ust-tracepoint-event-write.h
CommitLineData
4774c8f3
MD
1/*
2 * Copyright (c) 2011 - Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
3 *
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:
10 *
11 * The above copyright notice and this permission notice shall be included in
12 * all copies or substantial portions of the Software.
13 */
14
15#undef ctf_integer
16#define ctf_integer(_type, _item, _src) \
17 _ctf_integer_ext(_type, _item, _src, BYTE_ORDER, 10, 1)
18
19#undef ctf_integer_hex
20#define ctf_integer_hex(_type, _item, _src) \
21 _ctf_integer_ext(_type, _item, _src, BYTE_ORDER, 16, 1)
22
23#undef ctf_integer_network
24#define ctf_integer_network(_type, _item, _src) \
25 _ctf_integer_ext(_type, _item, _src, BIG_ENDIAN, 10, 1)
26
27#undef ctf_integer_network_hex
28#define ctf_integer_network_hex(_type, _item, _src) \
29 _ctf_integer_ext(_type, _item, _src, BIG_ENDIAN, 16, 1)
30
31#undef ctf_float
32#define ctf_float(_type, _item, _src) \
33 _ctf_float(_type, _item, _src, 1)
34
35#undef ctf_array
36#define ctf_array(_type, _item, _src, _length) \
37 _ctf_array_encoded(_type, _item, _src, _length, none, 1)
38
39#undef ctf_array_text
40#define ctf_array_text(_type, _item, _src, _length) \
41 _ctf_array_encoded(_type, _item, _src, _length, UTF8, 1)
42
43#undef ctf_sequence
44#define ctf_sequence(_type, _item, _src, _length_type, _src_length) \
45 _ctf_sequence_encoded(_type, _item, _src, \
46 _length_type, _src_length, none, 1)
47
48#undef ctf_sequence_text
49#define ctf_sequence_text(_type, _item, _src, _length_type, _src_length) \
50 _ctf_sequence_encoded(_type, _item, _src, \
51 _length_type, _src_length, UTF8, 1)
52
53#undef ctf_string
54#define ctf_string(_item, _src) \
55 _ctf_string(_item, _src, 1)
This page took 0.023984 seconds and 4 git commands to generate.