X-Git-Url: http://git.lttng.org./?a=blobdiff_plain;f=include%2Flttng%2Ftracepoint.h;h=268271c48c933fe8be2f1df6f5c4a8d5b8d81c91;hb=06294ff90351f02d01c65d186e3d993f624fef8d;hp=5d30703e3039603f272361122ce98b19962b9f66;hpb=dbcc2f9279a03c620350b4743467aa2f7cb7bf5f;p=lttng-ust.git diff --git a/include/lttng/tracepoint.h b/include/lttng/tracepoint.h index 5d30703e..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. * @@ -815,7 +815,7 @@ lttng_ust__tracepoints__ptrs_destroy(void) * LTTNG_UST_TRACEPOINT_LOGLEVEL(< [com_company_]project[_component] >, < event >, * < loglevel_name >) * - * The TRACEPOINT_PROVIDER must be already declared before declaring a + * The LTTNG_UST_TRACEPOINT_PROVIDER must be already declared before declaring a * LTTNG_UST_TRACEPOINT_LOGLEVEL. */