/usr/src/lttng-modules-2.7.1/probes/lttng-events-nowrite.h is in lttng-modules-dkms 2.7.1-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 | /*
* lttng-events-write.h
*
* Copyright (C) 2014 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; only
* version 2.1 of the License.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#undef ctf_integer_nowrite
#define ctf_integer_nowrite(_type, _item, _user_src) \
_ctf_integer_ext(_type, _item, _user_src, __BYTE_ORDER, 10, 0, 1)
#undef ctf_integer_hex_nowrite
#define ctf_integer_hex_nowrite(_type, _item, _user_src) \
_ctf_integer_ext(_type, _item, _user_src, __BYTE_ORDER, 16, 0, 1)
#undef ctf_integer_oct_nowrite
#define ctf_integer_oct_nowrite(_type, _item, _user_src) \
_ctf_integer_ext(_type, _item, _user_src, __BYTE_ORDER, 8, 0, 1)
#undef ctf_integer_network_nowrite
#define ctf_integer_network_nowrite(_type, _item, _user_src) \
_ctf_integer_ext(_type, _item, _user_src, __BIG_ENDIAN, 10, 0, 1)
#undef ctf_integer_network_hex_nowrite
#define ctf_integer_network_hex_nowrite(_type, _item, _user_src) \
_ctf_integer_ext(_type, _item, _user_src, __BIG_ENDIAN, 16, 0, 1)
#undef ctf_array_nowrite
#define ctf_array_nowrite(_type, _item, _user_src, _length) \
_ctf_array_encoded(_type, _item, _user_src, _length, none, 0, 1)
#undef ctf_array_text_nowrite
#define ctf_array_text_nowrite(_type, _item, _user_src, _length) \
_ctf_array_encoded(_type, _item, _user_src, _length, UTF8, 0, 1)
#undef ctf_sequence_nowrite
#define ctf_sequence_nowrite(_type, _item, _user_src, _length_type, _user_src_length) \
_ctf_sequence_encoded(_type, _item, _user_src, \
_length_type, _user_src_length, none, __BYTE_ORDER, 10, 0, 1)
#undef ctf_sequence_text_nowrite
#define ctf_sequence_text_nowrite(_type, _item, _user_src, _length_type, _user_src_length) \
_ctf_sequence_encoded(_type, _item, _user_src, \
_length_type, _user_src_length, UTF8, __BYTE_ORDER, 10, 0, 1)
#undef ctf_string_nowrite
#define ctf_string_nowrite(_item, _user_src) \
_ctf_string(_item, _user_src, 0, 1)
/* user src */
#undef ctf_user_integer_nowrite
#define ctf_user_integer_nowrite(_type, _item, _user_src) \
_ctf_integer_ext(_type, _item, _user_src, __BYTE_ORDER, 10, 1, 1)
#undef ctf_user_integer_hex_nowrite
#define ctf_user_integer_hex_nowrite(_type, _item, _user_src) \
_ctf_integer_ext(_type, _item, _user_src, __BYTE_ORDER, 16, 1, 1)
#undef ctf_user_integer_network_nowrite
#define ctf_user_integer_network_nowrite(_type, _item, _user_src) \
_ctf_integer_ext(_type, _item, _user_src, __BIG_ENDIAN, 10, 1, 1)
#undef ctf_user_integer_network_hex_nowrite
#define ctf_user_integer_network_hex_nowrite(_type, _item, _user_src) \
_ctf_integer_ext(_type, _item, _user_src, __BIG_ENDIAN, 16, 1, 1)
#undef ctf_user_array_nowrite
#define ctf_user_array_nowrite(_type, _item, _user_src, _length) \
_ctf_array_encoded(_type, _item, _user_src, _length, none, 1, 1)
#undef ctf_user_array_text_nowrite
#define ctf_user_array_text_nowrite(_type, _item, _user_src, _length) \
_ctf_array_encoded(_type, _item, _user_src, _length, UTF8, 1, 1)
#undef ctf_user_sequence_nowrite
#define ctf_user_sequence_nowrite(_type, _item, _user_src, _length_type, _user_src_length) \
_ctf_sequence_encoded(_type, _item, _user_src, \
_length_type, _user_src_length, none, __BYTE_ORDER, 10, 1, 1)
#undef ctf_user_sequence_text_nowrite
#define ctf_user_sequence_text_nowrite(_type, _item, _user_src, _length_type, _user_src_length) \
_ctf_sequence_encoded(_type, _item, _user_src, \
_length_type, _user_src_length, UTF8, __BYTE_ORDER, 10, 1, 1)
#undef ctf_user_string_nowrite
#define ctf_user_string_nowrite(_item, _user_src) \
_ctf_string(_item, _user_src, 1, 1)
|