X-Git-Url: http://git.lttng.org./?a=blobdiff_plain;f=probes%2Flttng-events-nowrite.h;h=62e32393c0d066ef81849193b5b6a3b4384676d2;hb=64cc198b453a1fd05fb6f23bda08282ed0902c1c;hp=39cd424ac94ce2b8729cc25750ba3a7cf0937d23;hpb=af2a1fe5297bbbcb6ab5ba9a5275b3546c38ff10;p=lttng-modules.git diff --git a/probes/lttng-events-nowrite.h b/probes/lttng-events-nowrite.h index 39cd424a..62e32393 100644 --- a/probes/lttng-events-nowrite.h +++ b/probes/lttng-events-nowrite.h @@ -39,27 +39,52 @@ _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) +#define ctf_array_nowrite(_type, _item, _src, _length) \ + _ctf_array_encoded(_type, _item, _src, \ + _length, none, __BYTE_ORDER, 10, 0, 1) + +#undef ctf_array_network_nowrite +#define ctf_array_network_nowrite(_type, _item, _src, _length) \ + _ctf_array_encoded(_type, _item, _src, \ + _length, none, __BIG_ENDIAN, 10, 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) +#define ctf_array_text_nowrite(_type, _item, _src, _length) \ + _ctf_array_encoded(_type, _item, _src, \ + _length, UTF8, __BYTE_ORDER, 10, 0, 1) + +#undef ctf_array_bitfield_nowrite +#define ctf_array_bitfield_nowrite(_type, _item, _src, _length) \ + _ctf_array_bitfield(_type, _item, _src, _length, 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_network_nowrite +#define ctf_sequence_network_nowrite(_type, _item, _user_src, _length_type, _user_src_length) \ + _ctf_sequence_encoded(_type, _item, _user_src, \ + _length_type, _user_src_length, none, __BIG_ENDIAN, 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, 0, 0, 1) + _length_type, _user_src_length, UTF8, __BYTE_ORDER, 10, 0, 1) + +#undef ctf_sequence_bitfield_nowrite +#define ctf_sequence_bitfield_nowrite(_type, _item, _src, _length_type, _src_length) \ + _ctf_sequence_bitfield(_type, _item, _src, \ + _length_type, _src_length, 0, 1) #undef ctf_string_nowrite #define ctf_string_nowrite(_item, _user_src) \ _ctf_string(_item, _user_src, 0, 1) +#undef ctf_enum_nowrite +#define ctf_enum_nowrite(_name, _type, _item, _src) \ + _ctf_enum(_name, _type, _item, _src, 0, 1) + /* user src */ #undef ctf_user_integer_nowrite #define ctf_user_integer_nowrite(_type, _item, _user_src) \ @@ -78,23 +103,48 @@ _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) +#define ctf_user_array_nowrite(_type, _item, _src, _length) \ + _ctf_array_encoded(_type, _item, _src, \ + _length, none, __BYTE_ORDER, 10, 1, 1) + +#undef ctf_user_array_network_nowrite +#define ctf_user_array_network_nowrite(_type, _item, _src, _length) \ + _ctf_array_encoded(_type, _item, _src, \ + _length, none, __BIG_ENDIAN, 10, 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) +#define ctf_user_array_text_nowrite(_type, _item, _src, _length) \ + _ctf_array_encoded(_type, _item, _src, \ + _length, UTF8, __BYTE_ORDER, 10, 1, 1) + +#undef ctf_user_array_bitfield_nowrite +#define ctf_user_array_bitfield_nowrite(_type, _item, _src, _length) \ + _ctf_array_bitfield(_type, _item, _src, _length, 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_network_nowrite +#define ctf_user_sequence_network_nowrite(_type, _item, _user_src, _length_type, _user_src_length) \ + _ctf_sequence_encoded(_type, _item, _user_src, \ + _length_type, _user_src_length, none, __BIG_ENDIAN, 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, 0, 1, 1) + _length_type, _user_src_length, UTF8, __BYTE_ORDER, 10, 1, 1) + +#undef ctf_user_sequence_bitfield_nowrite +#define ctf_user_sequence_bitfield_nowrite(_type, _item, _src, _length_type, _src_length) \ + _ctf_sequence_bitfield(_type, _item, _src, \ + _length_type, _src_length, 1, 1) #undef ctf_user_string_nowrite #define ctf_user_string_nowrite(_item, _user_src) \ _ctf_string(_item, _user_src, 1, 1) + +#undef ctf_user_enum_nowrite +#define ctf_user_enum_nowrite(_name, _type, _item, _src) \ + _ctf_enum(_name, _type, _item, _src, 1, 1)