0d4cf6844a5f4a8cdaa8b633d5c092b6eedc7d76
[lttng-ust.git] / include / lttng / ust-tracepoint-event-write.h
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 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
19 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
20 * SOFTWARE.
21 */
22
23 #undef ctf_integer
24 #define ctf_integer(_type, _item, _src) \
25 _ctf_integer_ext(_type, _item, _src, BYTE_ORDER, 10, 0)
26
27 #undef ctf_integer_hex
28 #define ctf_integer_hex(_type, _item, _src) \
29 _ctf_integer_ext(_type, _item, _src, BYTE_ORDER, 16, 0)
30
31 #undef ctf_integer_network
32 #define ctf_integer_network(_type, _item, _src) \
33 _ctf_integer_ext(_type, _item, _src, BIG_ENDIAN, 10, 0)
34
35 #undef ctf_integer_network_hex
36 #define ctf_integer_network_hex(_type, _item, _src) \
37 _ctf_integer_ext(_type, _item, _src, BIG_ENDIAN, 16, 0)
38
39 #undef ctf_float
40 #define ctf_float(_type, _item, _src) \
41 _ctf_float(_type, _item, _src, 0)
42
43 #undef ctf_array
44 #define ctf_array(_type, _item, _src, _length) \
45 _ctf_array_encoded(_type, _item, _src, BYTE_ORDER, \
46 _length, none, 0, 10)
47
48 #undef ctf_array_hex
49 #define ctf_array_hex(_type, _item, _src, _length) \
50 _ctf_array_encoded(_type, _item, _src, BYTE_ORDER, \
51 _length, none, 0, 16)
52
53 #undef ctf_array_network
54 #define ctf_array_network(_type, _item, _src, _length) \
55 _ctf_array_encoded(_type, _item, _src, BIG_ENDIAN, \
56 _length, none, 0, 10)
57
58 #undef ctf_array_network_hex
59 #define ctf_array_network_hex(_type, _item, _src, _length) \
60 _ctf_array_encoded(_type, _item, _src, BIG_ENDIAN, \
61 _length, none, 0, 16)
62
63 #undef ctf_array_text
64 #define ctf_array_text(_type, _item, _src, _length) \
65 _ctf_array_encoded(_type, _item, _src, BYTE_ORDER, \
66 _length, UTF8, 0, 10)
67
68 #undef ctf_sequence
69 #define ctf_sequence(_type, _item, _src, _length_type, _src_length) \
70 _ctf_sequence_encoded(_type, _item, _src, BYTE_ORDER, \
71 _length_type, _src_length, none, 0, 10)
72
73 #undef ctf_sequence_hex
74 #define ctf_sequence_hex(_type, _item, _src, _length_type, _src_length) \
75 _ctf_sequence_encoded(_type, _item, _src, BYTE_ORDER, \
76 _length_type, _src_length, none, 0, 16)
77
78 #undef ctf_sequence_network
79 #define ctf_sequence_network(_type, _item, _src, _length_type, _src_length) \
80 _ctf_sequence_encoded(_type, _item, _src, BIG_ENDIAN, \
81 _length_type, _src_length, none, 0, 10)
82
83 #undef ctf_sequence_network_hex
84 #define ctf_sequence_network_hex(_type, _item, _src, _length_type, _src_length) \
85 _ctf_sequence_encoded(_type, _item, _src, BIG_ENDIAN, \
86 _length_type, _src_length, none, 0, 16)
87
88 #undef ctf_sequence_text
89 #define ctf_sequence_text(_type, _item, _src, _length_type, _src_length) \
90 _ctf_sequence_encoded(_type, _item, _src, BYTE_ORDER, \
91 _length_type, _src_length, UTF8, 0, 10)
92
93 #undef ctf_string
94 #define ctf_string(_item, _src) \
95 _ctf_string(_item, _src, 0)
96
97 #undef ctf_enum
98 #define ctf_enum(_provider, _name, _type, _item, _src) \
99 _ctf_enum(_provider, _name, _type, _item, _src, 0)
This page took 0.030318 seconds and 3 git commands to generate.