X-Git-Url: http://git.liburcu.org/?a=blobdiff_plain;f=liblttng-ust-libc-wrapper%2Fust_pthread.h;h=b6786210899a51a27cdee8bf1cb810c570c45cb5;hb=ef1a13e0de71e01d19a9d1b2d4abdac5e34eb9bc;hp=7d35c3a0e745efb293cd0942326ec7b05d954e56;hpb=600f634aea56e0c003759be5f5e2eb5ac450b742;p=lttng-ust.git diff --git a/liblttng-ust-libc-wrapper/ust_pthread.h b/liblttng-ust-libc-wrapper/ust_pthread.h index 7d35c3a0..b6786210 100644 --- a/liblttng-ust-libc-wrapper/ust_pthread.h +++ b/liblttng-ust-libc-wrapper/ust_pthread.h @@ -1,5 +1,5 @@ #undef TRACEPOINT_PROVIDER -#define TRACEPOINT_PROVIDER ust_pthread +#define TRACEPOINT_PROVIDER lttng_ust_pthread #if !defined(_TRACEPOINT_UST_PTHREAD_H) || defined(TRACEPOINT_HEADER_MULTI_READ) #define _TRACEPOINT_UST_PTHREAD_H @@ -32,31 +32,31 @@ extern "C" { #include -TRACEPOINT_EVENT(ust_pthread, pthread_mutex_lock_req, - TP_ARGS(pthread_mutex_t *, mutex), +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) ) ) -TRACEPOINT_EVENT(ust_pthread, pthread_mutex_lock_acq, - TP_ARGS(pthread_mutex_t *, mutex, int, status), +TRACEPOINT_EVENT(lttng_ust_pthread, pthread_mutex_lock_acq, + TP_ARGS(pthread_mutex_t *, mutex, int, status, void *, ip), TP_FIELDS( ctf_integer_hex(void *, mutex, mutex) ctf_integer(int, status, status) ) ) -TRACEPOINT_EVENT(ust_pthread, pthread_mutex_trylock, - TP_ARGS(pthread_mutex_t *, mutex, int, status), +TRACEPOINT_EVENT(lttng_ust_pthread, pthread_mutex_trylock, + TP_ARGS(pthread_mutex_t *, mutex, int, status, void *, ip), TP_FIELDS( ctf_integer_hex(void *, mutex, mutex) ctf_integer(int, status, status) ) ) -TRACEPOINT_EVENT(ust_pthread, pthread_mutex_unlock, - TP_ARGS(pthread_mutex_t *, mutex, int, status), +TRACEPOINT_EVENT(lttng_ust_pthread, pthread_mutex_unlock, + TP_ARGS(pthread_mutex_t *, mutex, int, status, void *, ip), TP_FIELDS( ctf_integer_hex(void *, mutex, mutex) ctf_integer(int, status, status)