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

Collect child sample addresses.

This commit is contained in:
Bartosz Taudul
2021-11-27 02:03:59 +01:00
parent 2462e6cc7c
commit a02575322f
4 changed files with 23 additions and 10 deletions
+9
View File
@@ -619,6 +619,15 @@ struct GhostZone
enum { GhostZoneSize = sizeof( GhostZone ) };
struct ChildSample
{
Int48 time;
uint64_t addr;
};
enum { ChildSampleSize = sizeof( ChildSample ) };
#pragma pack()