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

Calculate callstack sample data on trace load.

This commit is contained in:
Bartosz Taudul
2020-02-27 01:22:36 +01:00
parent 8288f7c6b7
commit 852e37c8dd
3 changed files with 85 additions and 1 deletions
+8
View File
@@ -660,6 +660,14 @@ struct Parameter
int32_t val;
};
struct SymbolStats
{
uint32_t incl, excl;
};
enum { SymbolStatsSize = sizeof( SymbolStats ) };
}
#endif