X-Git-Url: http://git.liburcu.org/?a=blobdiff_plain;f=liblttng-ust-libc-wrapper%2Fust_libc.h;h=6aaef22b60af0d464654118d0227966622430c88;hb=5152f6df156d6ccb234965d1b3d26b167bd6b94e;hp=77056691c00a72508108e10f24eb53f211fdeea4;hpb=2208d8b5689264e35ed0a660d8c3c82021cc0367;p=lttng-ust.git diff --git a/liblttng-ust-libc-wrapper/ust_libc.h b/liblttng-ust-libc-wrapper/ust_libc.h index 77056691..6aaef22b 100644 --- a/liblttng-ust-libc-wrapper/ust_libc.h +++ b/liblttng-ust-libc-wrapper/ust_libc.h @@ -21,6 +21,7 @@ TRACEPOINT_EVENT(lttng_ust_libc, malloc, TP_FIELDS( ctf_integer(size_t, size, size) ctf_integer_hex(void *, ptr, ptr) + ctf_unused(ip) ) ) @@ -28,6 +29,7 @@ TRACEPOINT_EVENT(lttng_ust_libc, free, TP_ARGS(void *, ptr, void *, ip), TP_FIELDS( ctf_integer_hex(void *, ptr, ptr) + ctf_unused(ip) ) ) @@ -37,6 +39,7 @@ TRACEPOINT_EVENT(lttng_ust_libc, calloc, ctf_integer(size_t, nmemb, nmemb) ctf_integer(size_t, size, size) ctf_integer_hex(void *, ptr, ptr) + ctf_unused(ip) ) ) @@ -46,6 +49,7 @@ TRACEPOINT_EVENT(lttng_ust_libc, realloc, ctf_integer_hex(void *, in_ptr, in_ptr) ctf_integer(size_t, size, size) ctf_integer_hex(void *, ptr, ptr) + ctf_unused(ip) ) ) @@ -55,6 +59,7 @@ TRACEPOINT_EVENT(lttng_ust_libc, memalign, ctf_integer(size_t, alignment, alignment) ctf_integer(size_t, size, size) ctf_integer_hex(void *, ptr, ptr) + ctf_unused(ip) ) ) @@ -65,6 +70,7 @@ TRACEPOINT_EVENT(lttng_ust_libc, posix_memalign, ctf_integer(size_t, alignment, alignment) ctf_integer(size_t, size, size) ctf_integer(int, result, result) + ctf_unused(ip) ) )