1
0
mirror of https://github.com/wolfpld/tracy.git synced 2025-03-20 07:40:02 +08:00

Don't retrieve symbol name for address.

This commit is contained in:
Bartosz Taudul
2020-02-27 12:58:01 +01:00
parent be5793987e
commit 2df6f9068a
3 changed files with 10 additions and 104 deletions
-2
View File
@@ -2686,7 +2686,6 @@ void Profiler::HandleSymbolQuery( uint64_t symbol )
const auto sym = DecodeSymbolAddress( symbol );
SendString( uint64_t( sym.file ), sym.file, QueueType::CustomStringData );
SendString( uint64_t( sym.name ), sym.name, QueueType::CustomStringData );
QueueItem item;
MemWrite( &item.hdr.type, QueueType::SymbolInformation );
@@ -2697,7 +2696,6 @@ void Profiler::HandleSymbolQuery( uint64_t symbol )
AppendData( &item, QueueDataSize[(int)QueueType::SymbolInformation] );
tracy_free( (void*)sym.file );
tracy_free( (void*)sym.name );
#endif
}