Fix: pass private data to context callbacks
[lttng-ust.git] / liblttng-ust-libc-wrapper / ust_pthread.h
index 7296bf4c0c8614947c033f85cc9e8723a92cd956..4fdc11aa445f9d244d740d07dd6e440679a6398f 100644 (file)
@@ -20,6 +20,7 @@ TRACEPOINT_EVENT(lttng_ust_pthread, pthread_mutex_lock_req,
        TP_ARGS(pthread_mutex_t *, mutex, void *, ip),
        TP_FIELDS(
                ctf_integer_hex(void *, mutex, mutex)
+               ctf_unused(ip)
        )
 )
 
@@ -28,6 +29,7 @@ TRACEPOINT_EVENT(lttng_ust_pthread, pthread_mutex_lock_acq,
        TP_FIELDS(
                ctf_integer_hex(void *, mutex, mutex)
                ctf_integer(int, status, status)
+               ctf_unused(ip)
        )
 )
 
@@ -36,6 +38,7 @@ TRACEPOINT_EVENT(lttng_ust_pthread, pthread_mutex_trylock,
        TP_FIELDS(
                ctf_integer_hex(void *, mutex, mutex)
                ctf_integer(int, status, status)
+               ctf_unused(ip)
        )
 )
 
@@ -44,6 +47,7 @@ TRACEPOINT_EVENT(lttng_ust_pthread, pthread_mutex_unlock,
        TP_FIELDS(
                ctf_integer_hex(void *, mutex, mutex)
                ctf_integer(int, status, status)
+               ctf_unused(ip)
        )
 )
 
This page took 0.023003 seconds and 4 git commands to generate.