X-Git-Url: https://git.lttng.org/?a=blobdiff_plain;f=include%2Flttng%2Ftracepoint.h;h=268271c48c933fe8be2f1df6f5c4a8d5b8d81c91;hb=4849bc7a9e250ce47d7a3deb0d2327cc4b50422f;hp=b637b8534eb83b67ef8ded57c16b0adf99e3938a;hpb=5b393d6424d959e2efbb800b0c8a61b81bf9968e;p=lttng-ust.git diff --git a/include/lttng/tracepoint.h b/include/lttng/tracepoint.h index b637b853..268271c4 100644 --- a/include/lttng/tracepoint.h +++ b/include/lttng/tracepoint.h @@ -609,7 +609,7 @@ lttng_ust__tracepoints__ptrs_destroy(void) * An example: * * LTTNG_UST_TRACEPOINT_ENUM(someproject_component, enumname, - * TP_ENUM_VALUES( + * LTTNG_UST_TP_ENUM_VALUES( * ctf_enum_value("even", 0) * ctf_enum_value("uneven", 1) * ctf_enum_range("twoto4", 2, 4) @@ -619,7 +619,7 @@ lttng_ust__tracepoints__ptrs_destroy(void) * * Where "someproject_component" is the name of the component this enumeration * belongs to and "enumname" identifies this enumeration. Inside the - * TP_ENUM_VALUES macro is the actual mapping. Each string value can map + * LTTNG_UST_TP_ENUM_VALUES macro is the actual mapping. Each string value can map * to either a single value with ctf_enum_value or a range of values * with ctf_enum_range. *