MCPcopy Create free account
hub / github.com/FlaxEngine/FlaxEngine / dlclose

Function dlclose

Source/ThirdParty/tracy/client/TracyOverride.cpp:9–23  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

7# endif
8
9extern "C" int dlclose( void* hnd )
10{
11#ifdef TRACY_VERBOSE
12 struct link_map* lm;
13 if( dlinfo( hnd, RTLD_DI_LINKMAP, &lm ) == 0 )
14 {
15 TracyDebug( "Overriding dlclose for %s\n", lm->l_name );
16 }
17 else
18 {
19 TracyDebug( "Overriding dlclose for unknown object (%s)\n", dlerror() );
20 }
21#endif
22 return 0;
23}
24
25# endif
26#endif

Callers 7

volkFinalizeFunction · 0.85
FreeLibraryMethod · 0.85
FreeLibraryMethod · 0.85
FreeLibraryMethod · 0.85
FreeLibraryMethod · 0.85
OnMonoDlFallbackCloseFunction · 0.85
UnloadEngineMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected