X-Git-Url: http://git.liburcu.org/?a=blobdiff_plain;f=probes%2Flttng-events-reset.h;h=a3bef9e2a5bbb2374f1261142c731531b48e5795;hb=12e1cd7bc8ecc280727e247a9978be9a866f8982;hp=1bc77820c20e73b11ebde2a379879c47be1af024;hpb=43803cf2bdfe205fe0e426f7e93507d722ba1feb;p=lttng-modules.git diff --git a/probes/lttng-events-reset.h b/probes/lttng-events-reset.h index 1bc77820..a3bef9e2 100644 --- a/probes/lttng-events-reset.h +++ b/probes/lttng-events-reset.h @@ -21,10 +21,10 @@ /* Reset macros used within LTTNG_TRACEPOINT_EVENT to "nothing" */ #undef LTTNG_TRACEPOINT_EVENT_CLASS_CODE -#define LTTNG_TRACEPOINT_EVENT_CLASS_CODE(_name, _proto, _args, _locvar, _code, _fields) +#define LTTNG_TRACEPOINT_EVENT_CLASS_CODE(_name, _proto, _args, _locvar, _code_pre, _fields, _code_post) #undef LTTNG_TRACEPOINT_EVENT_CLASS_CODE_NOARGS -#define LTTNG_TRACEPOINT_EVENT_CLASS_CODE_NOARGS(_name, _locvar, _code, _fields) +#define LTTNG_TRACEPOINT_EVENT_CLASS_CODE_NOARGS(_name, _locvar, _code_pre, _fields, _code_post) #undef LTTNG_TRACEPOINT_EVENT_INSTANCE_MAP #define LTTNG_TRACEPOINT_EVENT_INSTANCE_MAP(_template, _name, _map, _proto, _args) @@ -32,6 +32,9 @@ #undef LTTNG_TRACEPOINT_EVENT_INSTANCE_MAP_NOARGS #define LTTNG_TRACEPOINT_EVENT_INSTANCE_MAP_NOARGS(_template, _name, _map) +#undef LTTNG_TRACEPOINT_ENUM +#define LTTNG_TRACEPOINT_ENUM(_name, _values) + #undef TP_PROTO #define TP_PROTO(args...) @@ -41,8 +44,11 @@ #undef TP_locvar #define TP_locvar(...) -#undef TP_code -#define TP_code(...) +#undef TP_code_pre +#define TP_code_pre(...) + +#undef TP_code_post +#define TP_code_post(...) #undef TP_FIELDS #define TP_FIELDS(args...) @@ -81,6 +87,9 @@ #undef _ctf_string #define _ctf_string(_item, _src, _user, _nowrite) +#undef _ctf_enum +#define _ctf_enum(_name, _type, _item, _src, _nowrite) + /* "write" */ #undef ctf_integer #define ctf_integer(_type, _item, _src) @@ -127,6 +136,21 @@ #undef ctf_string #define ctf_string(_item, _src) +#undef ctf_enum +#define ctf_enum(_name, _type, _item, _src) + +#undef ctf_custom_field +#define ctf_custom_field(_type, _item, _code) + +#undef ctf_custom_type +#define ctf_custom_type(...) + +#undef ctf_custom_code +#define ctf_custom_code(...) + +#undef ctf_align +#define ctf_align(_type) + /* "nowrite" */ #undef ctf_integer_nowrite #define ctf_integer_nowrite(_type, _item, _src) @@ -155,6 +179,9 @@ #undef ctf_string_nowrite #define ctf_string_nowrite(_item, _src) +#undef ctf_enum_nowrite +#define ctf_enum_nowrite(_name, _type, _item, _src) + /* "user" - "write" */ #undef ctf_user_integer #define ctf_user_integer(_type, _item, _user_src) @@ -192,6 +219,9 @@ #undef ctf_user_string #define ctf_user_string(_item, _user_src) +#undef ctf_user_enum +#define ctf_user_enum(_name, _type, _item, _src) + /* "user" - "nowrite" */ #undef ctf_user_integer_nowrite #define ctf_user_integer_nowrite(_type, _item, _user_src) @@ -219,3 +249,6 @@ #undef ctf_user_string_nowrite #define ctf_user_string_nowrite(_item, _user_src) + +#undef ctf_user_enum_nowrite +#define ctf_user_enum_nowrite(_name, _type, _item, _src)