Tracepoint API namespacing ctf_unused
[lttng-ust.git] / src / lib / lttng-ust-pthread-wrapper / ust_pthread.h
index c17ba4abe774e2feaae85fc7c7aacb50c6f97758..c5d50328d3c565261dbef3fe40e12966e2e687a5 100644 (file)
@@ -19,35 +19,35 @@ extern "C" {
 LTTNG_UST_TRACEPOINT_EVENT(lttng_ust_pthread, pthread_mutex_lock_req,
        LTTNG_UST_TP_ARGS(pthread_mutex_t *, mutex, void *, ip),
        LTTNG_UST_TP_FIELDS(
-               ctf_integer_hex(void *, mutex, mutex)
-               ctf_unused(ip)
+               lttng_ust_field_integer_hex(void *, mutex, mutex)
+               lttng_ust_field_unused(ip)
        )
 )
 
 LTTNG_UST_TRACEPOINT_EVENT(lttng_ust_pthread, pthread_mutex_lock_acq,
        LTTNG_UST_TP_ARGS(pthread_mutex_t *, mutex, int, status, void *, ip),
        LTTNG_UST_TP_FIELDS(
-               ctf_integer_hex(void *, mutex, mutex)
-               ctf_integer(int, status, status)
-               ctf_unused(ip)
+               lttng_ust_field_integer_hex(void *, mutex, mutex)
+               lttng_ust_field_integer(int, status, status)
+               lttng_ust_field_unused(ip)
        )
 )
 
 LTTNG_UST_TRACEPOINT_EVENT(lttng_ust_pthread, pthread_mutex_trylock,
        LTTNG_UST_TP_ARGS(pthread_mutex_t *, mutex, int, status, void *, ip),
        LTTNG_UST_TP_FIELDS(
-               ctf_integer_hex(void *, mutex, mutex)
-               ctf_integer(int, status, status)
-               ctf_unused(ip)
+               lttng_ust_field_integer_hex(void *, mutex, mutex)
+               lttng_ust_field_integer(int, status, status)
+               lttng_ust_field_unused(ip)
        )
 )
 
 LTTNG_UST_TRACEPOINT_EVENT(lttng_ust_pthread, pthread_mutex_unlock,
        LTTNG_UST_TP_ARGS(pthread_mutex_t *, mutex, int, status, void *, ip),
        LTTNG_UST_TP_FIELDS(
-               ctf_integer_hex(void *, mutex, mutex)
-               ctf_integer(int, status, status)
-               ctf_unused(ip)
+               lttng_ust_field_integer_hex(void *, mutex, mutex)
+               lttng_ust_field_integer(int, status, status)
+               lttng_ust_field_unused(ip)
        )
 )
 
This page took 0.023878 seconds and 4 git commands to generate.