X-Git-Url: https://git.lttng.org/?a=blobdiff_plain;f=liblttng-ust-libc-wrapper%2Fust_pthread.h;h=4248677344866aeb4dbfc560183191cc29a1384d;hb=be0ce77309ad103a0dfc286e793eb9cd55eacde3;hp=7d35c3a0e745efb293cd0942326ec7b05d954e56;hpb=e1ec8f94435f2af1267d4cffb473a56eb14f3d09;p=lttng-ust.git diff --git a/liblttng-ust-libc-wrapper/ust_pthread.h b/liblttng-ust-libc-wrapper/ust_pthread.h index 7d35c3a0..42486773 100644 --- a/liblttng-ust-libc-wrapper/ust_pthread.h +++ b/liblttng-ust-libc-wrapper/ust_pthread.h @@ -33,14 +33,14 @@ extern "C" { #include TRACEPOINT_EVENT(ust_pthread, pthread_mutex_lock_req, - TP_ARGS(pthread_mutex_t *, mutex), + TP_ARGS(pthread_mutex_t *, mutex, void *, ip), TP_FIELDS( ctf_integer_hex(void *, mutex, mutex) ) ) TRACEPOINT_EVENT(ust_pthread, pthread_mutex_lock_acq, - TP_ARGS(pthread_mutex_t *, mutex, int, status), + TP_ARGS(pthread_mutex_t *, mutex, int, status, void *, ip), TP_FIELDS( ctf_integer_hex(void *, mutex, mutex) ctf_integer(int, status, status) @@ -48,7 +48,7 @@ TRACEPOINT_EVENT(ust_pthread, pthread_mutex_lock_acq, ) TRACEPOINT_EVENT(ust_pthread, pthread_mutex_trylock, - TP_ARGS(pthread_mutex_t *, mutex, int, status), + TP_ARGS(pthread_mutex_t *, mutex, int, status, void *, ip), TP_FIELDS( ctf_integer_hex(void *, mutex, mutex) ctf_integer(int, status, status) @@ -56,7 +56,7 @@ TRACEPOINT_EVENT(ust_pthread, pthread_mutex_trylock, ) TRACEPOINT_EVENT(ust_pthread, pthread_mutex_unlock, - TP_ARGS(pthread_mutex_t *, mutex, int, status), + TP_ARGS(pthread_mutex_t *, mutex, int, status, void *, ip), TP_FIELDS( ctf_integer_hex(void *, mutex, mutex) ctf_integer(int, status, status)