Welcome to mirror list, hosted at ThFree Co, Russian Federation.

TracyOverride.cpp « client « public - github.com/wolfpld/tracy.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 591508a7ff4e0f2887ac8c938b64495a45e86382 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#ifdef TRACY_ENABLE
#  ifdef __linux__
#    include "TracyDebug.hpp"
#    ifdef TRACY_VERBOSE
#      include <dlfcn.h>
#      include <link.h>
#    endif

extern "C" int dlclose( void* hnd )
{
#ifdef TRACY_VERBOSE
    struct link_map* lm;
    if( dlinfo( hnd, RTLD_DI_LINKMAP, &lm ) == 0 )
    {
        TracyDebug( "Overriding dlclose for %s\n", lm->l_name );
    }
    else
    {
        TracyDebug( "Overriding dlclose for unknown object (%s)\n", dlerror() );
    }
#endif
    return 0;
}

#  endif
#endif