Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/wolfpld/tracy.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorxavier <xavierb@gmail.com>2021-09-04 17:11:41 +0300
committerxavier <xavierb@gmail.com>2021-09-23 22:03:56 +0300
commite4ce9f0f4136127dd359edb3e23412de60c769fd (patch)
tree201c82081f9a31713dc3768776f17ab5000575ef /server/TracyEvent.hpp
parent6b901a7156057a42e7956202552db9eb97b97edc (diff)
Include threadid in SampleDataRange
TODO: maybe make lists per thread to avoid increasing the packed structure by 2 bytes?
Diffstat (limited to 'server/TracyEvent.hpp')
-rw-r--r--server/TracyEvent.hpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/server/TracyEvent.hpp b/server/TracyEvent.hpp
index edb5ba67..499778ea 100644
--- a/server/TracyEvent.hpp
+++ b/server/TracyEvent.hpp
@@ -268,6 +268,7 @@ enum { SampleDataSize = sizeof( SampleData ) };
struct SampleDataRange
{
Int48 time;
+ uint16_t thread;
CallstackFrameId ip;
};