Fix: tracepoint float nowrite
[lttng-ust.git] / include / lttng / ust-tracepoint-event-nowrite.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
15 #undef ctf_integer_nowrite
16 #define ctf_integer_nowrite(_type, _item, _src) \
17 _ctf_integer_ext(_type, _item, _src, BYTE_ORDER, 10, 0)
18
19 #undef ctf_float_nowrite
20 #define ctf_float_nowrite(_type, _item, _src) \
21 _ctf_float(_type, _item, _src, 0)
22
23 #undef ctf_array_nowrite
24 #define ctf_array_nowrite(_type, _item, _src, _length) \
25 _ctf_array_encoded(_type, _item, _src, _length, none, 0)
26
27 #undef ctf_array_text_nowrite
28 #define ctf_array_text_nowrite(_type, _item, _src, _length) \
29 _ctf_array_encoded(_type, _item, _src, _length, UTF8, 0)
30
31 #undef ctf_sequence_nowrite
32 #define ctf_sequence_nowrite(_type, _item, _src, _length_type, _src_length) \
33 _ctf_sequence_encoded(_type, _item, _src, \
34 _length_type, _src_length, none, 0)
35
36 #undef ctf_sequence_text_nowrite
37 #define ctf_sequence_text_nowrite(_type, _item, _src, _length_type, _src_length) \
38 _ctf_sequence_encoded(_type, _item, _src, \
39 _length_type, _src_length, UTF8, 0)
40
41 #undef ctf_string_nowrite
42 #define ctf_string_nowrite(_item, _src) \
43 _ctf_string(_item, _src, 0)
This page took 0.030837 seconds and 5 git commands to generate.