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

Send callstack alloc payload.

This commit is contained in:
Bartosz Taudul
2019-02-28 20:30:07 +01:00
parent b8501956f9
commit e3c31e4a4e
3 changed files with 28 additions and 0 deletions
+2
View File
@@ -56,6 +56,7 @@ enum class QueueType : uint8_t
PlotName,
SourceLocationPayload,
CallstackPayload,
CallstackAllocPayload,
FrameName,
NUM_TYPES
};
@@ -372,6 +373,7 @@ static const size_t QueueDataSize[] = {
sizeof( QueueHeader ) + sizeof( QueueStringTransfer ), // plot name
sizeof( QueueHeader ) + sizeof( QueueStringTransfer ), // allocated source location payload
sizeof( QueueHeader ) + sizeof( QueueStringTransfer ), // callstack payload
sizeof( QueueHeader ) + sizeof( QueueStringTransfer ), // callstack alloc payload
sizeof( QueueHeader ) + sizeof( QueueStringTransfer ), // frame name
};