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

Callstack frame queries.

This commit is contained in:
Bartosz Taudul
2018-06-20 00:25:26 +02:00
parent 4ba95145da
commit 203744cdd9
4 changed files with 21 additions and 0 deletions
+10
View File
@@ -158,6 +158,16 @@ struct MemEvent
enum { MemEventSize = sizeof( MemEvent ) };
static_assert( std::is_standard_layout<MemEvent>::value, "MemEvent is not standard layout" );
struct CallstackFrame
{
uint64_t file;
StringIdx name;
uint32_t line;
};
enum { CallstackFrameSize = sizeof( CallstackFrame ) };
#pragma pack()