compat: work around broken _SC_NPROCESSORS_CONF on MUSL libc
[lttng-ust.git] / liblttng-ust-dl / ust_dl.h
index 72b23ac58eea522f6f8466e1c80c34608a600c68..c8a069569faf9959bb858dc0da5e34c541894ac8 100644 (file)
@@ -33,20 +33,43 @@ extern "C" {
 
 #include <stdint.h>
 #include <unistd.h>
+#include <config.h>
 
 #define LTTNG_UST_DL_PROVIDER
 #include <lttng/tracepoint.h>
 
 TRACEPOINT_EVENT(lttng_ust_dl, dlopen,
-       TP_ARGS(void *, ip, void *, baddr, const char*, path,
-               uint64_t, memsz),
+       TP_ARGS(void *, ip, void *, baddr, const char *, path,
+               int, flags, uint64_t, memsz, uint8_t, has_build_id,
+               uint8_t, has_debug_link),
        TP_FIELDS(
                ctf_integer_hex(void *, baddr, baddr)
                ctf_integer(uint64_t, memsz, memsz)
+               ctf_integer_hex(int, flags, flags)
                ctf_string(path, path)
+               ctf_integer(uint8_t, has_build_id, has_build_id)
+               ctf_integer(uint8_t, has_debug_link, has_debug_link)
        )
 )
 
+#ifdef HAVE_DLMOPEN
+TRACEPOINT_EVENT(lttng_ust_dl, dlmopen,
+       TP_ARGS(void *, ip, void *, baddr, Lmid_t, nsid,
+               const char *, path, int, flags,
+               uint64_t, memsz, uint8_t, has_build_id,
+               uint8_t, has_debug_link),
+       TP_FIELDS(
+               ctf_integer_hex(void *, baddr, baddr)
+               ctf_integer(uint64_t, memsz, memsz)
+               ctf_integer(Lmid_t, nsid, nsid)
+               ctf_integer_hex(int, flags, flags)
+               ctf_string(path, path)
+               ctf_integer(uint8_t, has_build_id, has_build_id)
+               ctf_integer(uint8_t, has_debug_link, has_debug_link)
+       )
+)
+#endif
+
 TRACEPOINT_EVENT(lttng_ust_dl, build_id,
        TP_ARGS(
                void *, ip,
This page took 0.02356 seconds and 4 git commands to generate.