Cache flame graph.

This commit is contained in:
Bartosz Taudul
2024-09-29 00:26:00 +02:00
parent 02d60a3dde
commit 346d8a45c6
3 changed files with 78 additions and 55 deletions

View File

@@ -845,6 +845,14 @@ struct SymbolStats
enum { SymbolStatsSize = sizeof( SymbolStats ) };
struct FlameGraphItem
{
int64_t srcloc;
int64_t time;
std::vector<FlameGraphItem> children;
};
}
#endif