mirror of
https://github.com/wolfpld/tracy.git
synced 2025-03-20 07:40:02 +08:00
Increase symbol retrieval size limit to 128 KB.
This commit is contained in:
parent
e17316fded
commit
2d2a5c92fd
@ -6135,7 +6135,7 @@ void Worker::ProcessSymbolInformation( const QueueSymbolInformation& ev )
|
||||
sd.size.SetVal( it->second.size );
|
||||
m_data.symbolMap.emplace( ev.symAddr, std::move( sd ) );
|
||||
|
||||
if( m_codeTransfer && it->second.size > 0 && it->second.size <= 64*1024 )
|
||||
if( m_codeTransfer && it->second.size > 0 && it->second.size <= 128*1024 )
|
||||
{
|
||||
assert( m_pendingSymbolCode.find( ev.symAddr ) == m_pendingSymbolCode.end() );
|
||||
m_pendingSymbolCode.emplace( ev.symAddr );
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user