fix: unix socket peercred on FreeBSD
[lttng-ust.git] / include / lttng / ust-tracepoint-event-nowrite.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.
d2428e87
MD
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.
4774c8f3
MD
21 */
22
23#undef ctf_integer_nowrite
24#define ctf_integer_nowrite(_type, _item, _src) \
180901e6 25 _ctf_integer_ext(_type, _item, _src, BYTE_ORDER, 10, 1)
4774c8f3
MD
26
27#undef ctf_float_nowrite
28#define ctf_float_nowrite(_type, _item, _src) \
180901e6 29 _ctf_float(_type, _item, _src, 1)
4774c8f3
MD
30
31#undef ctf_array_nowrite
32#define ctf_array_nowrite(_type, _item, _src, _length) \
f3ec4cb5 33 _ctf_array_encoded(_type, _item, _src, BYTE_ORDER, _length, none, 1, 10)
4774c8f3 34
35ebe09b
MD
35#undef ctf_array_nowrite_hex
36#define ctf_array_nowrite_hex(_type, _item, _src, _length) \
37 _ctf_array_encoded(_type, _item, _src, BYTE_ORDER, _length, none, 1, 16)
38
39#undef ctf_array_network_nowrite
40#define ctf_array_network_nowrite(_type, _item, _src, _length) \
41 _ctf_array_encoded(_type, _item, _src, BIG_ENDIAN, \
42 _length, none, 1, 10)
43
44#undef ctf_array_network_nowrite_hex
45#define ctf_array_network_nowrite_hex(_type, _item, _src, _length) \
46 _ctf_array_encoded(_type, _item, _src, BIG_ENDIAN, \
47 _length, none, 1, 16)
48
4774c8f3
MD
49#undef ctf_array_text_nowrite
50#define ctf_array_text_nowrite(_type, _item, _src, _length) \
f3ec4cb5 51 _ctf_array_encoded(_type, _item, _src, BYTE_ORDER, _length, UTF8, 1, 10)
4774c8f3
MD
52
53#undef ctf_sequence_nowrite
54#define ctf_sequence_nowrite(_type, _item, _src, _length_type, _src_length) \
48d660d1 55 _ctf_sequence_encoded(_type, _item, _src, BYTE_ORDER, \
f968510a
PP
56 _length_type, _src_length, none, 1, 10)
57
58#undef ctf_sequence_nowrite_hex
59#define ctf_sequence_nowrite_hex(_type, _item, _src, _length_type, _src_length) \
48d660d1 60 _ctf_sequence_encoded(_type, _item, _src, BYTE_ORDER, \
f968510a 61 _length_type, _src_length, none, 1, 16)
4774c8f3 62
35ebe09b
MD
63#undef ctf_sequence_network_nowrite
64#define ctf_sequence_network_nowrite(_type, _item, _src, _length_type, _src_length) \
65 _ctf_sequence_encoded(_type, _item, _src, BIG_ENDIAN, \
66 _length_type, _src_length, none, 1, 10)
67
68#undef ctf_sequence_network_nowrite_hex
69#define ctf_sequence_network_nowrite_hex(_type, _item, _src, _length_type, _src_length) \
70 _ctf_sequence_encoded(_type, _item, _src, BIG_ENDIAN, \
71 _length_type, _src_length, none, 1, 16)
72
4774c8f3
MD
73#undef ctf_sequence_text_nowrite
74#define ctf_sequence_text_nowrite(_type, _item, _src, _length_type, _src_length) \
48d660d1 75 _ctf_sequence_encoded(_type, _item, _src, BYTE_ORDER, \
f968510a 76 _length_type, _src_length, UTF8, 1, 10)
4774c8f3
MD
77
78#undef ctf_string_nowrite
79#define ctf_string_nowrite(_item, _src) \
180901e6 80 _ctf_string(_item, _src, 1)
c785c634
MD
81
82#undef ctf_enum_nowrite
83#define ctf_enum_nowrite(_provider, _name, _type, _item, _src) \
84 _ctf_enum(_provider, _name, _type, _item, _src, 1)
This page took 0.030483 seconds and 4 git commands to generate.