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

Notify server that parameter was handled.

This commit is contained in:
Bartosz Taudul
2020-03-25 20:37:26 +01:00
parent ea507289c6
commit ce449ac0e2
3 changed files with 7 additions and 0 deletions
+2
View File
@@ -2730,6 +2730,8 @@ void Profiler::HandleParameter( uint64_t payload )
const auto idx = uint32_t( payload >> 32 );
const auto val = int32_t( payload & 0xFFFFFFFF );
m_paramCallback( idx, val );
TracyLfqPrepare( QueueType::ParamPingback );
TracyLfqCommit;
}
void Profiler::HandleSymbolQuery( uint64_t symbol )