| 7 | # endif |
| 8 | |
| 9 | extern "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 |
no outgoing calls
no test coverage detected