Fix: add missing getenv wrapper
[lttng-ust.git] / liblttng-ust-dl / ustdl.c
index dbde8b7fedd9976d7f4f28619c58d0c16afe3e3c..b6abca7b6e13c7562bbb4d1b8fccbcaea64bdf2b 100644 (file)
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301 USA
  */
 
+#define _LGPL_SOURCE
 #define _GNU_SOURCE
+#include <lttng/ust-dlfcn.h>
 #include <inttypes.h>
-#include <dlfcn.h>
 #include <link.h>
 #include <unistd.h>
 #include <stdio.h>
@@ -89,7 +90,7 @@ void lttng_ust_baddr_push(void *so_base, const char *so_name)
 void *dlopen(const char *filename, int flag)
 {
        void *handle = _lttng_ust_dl_libc_dlopen(filename, flag);
-       if (handle) {
+       if (__tracepoint_ptrs_registered && handle) {
                struct link_map *p = NULL;
                if (dlinfo(handle, RTLD_DI_LINKMAP, &p) != -1 && p != NULL
                                && p->l_addr != 0)
@@ -100,7 +101,7 @@ void *dlopen(const char *filename, int flag)
 
 int dlclose(void *handle)
 {
-       if (handle) {
+       if (__tracepoint_ptrs_registered && handle) {
                struct link_map *p = NULL;
                if (dlinfo(handle, RTLD_DI_LINKMAP, &p) != -1 && p != NULL
                                && p->l_addr != 0)
This page took 0.023088 seconds and 4 git commands to generate.