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

Store symbol addresses.

This commit is contained in:
Bartosz Taudul
2020-02-25 23:42:59 +01:00
parent ca894be51d
commit af58649113
4 changed files with 32 additions and 4 deletions
+6 -1
View File
@@ -314,13 +314,18 @@ enum { MemEventSize = sizeof( MemEvent ) };
static_assert( std::is_standard_layout<MemEvent>::value, "MemEvent is not standard layout" );
struct CallstackFrame
struct CallstackFrameBasic
{
StringIdx name;
StringIdx file;
uint32_t line;
};
struct CallstackFrame : public CallstackFrameBasic
{
uint64_t symAddr;
};
enum { CallstackFrameSize = sizeof( CallstackFrame ) };
struct CallstackFrameData