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

Send executable mtime in welcome message.

This commit is contained in:
Bartosz Taudul
2021-01-31 17:45:11 +01:00
parent 0ce113a96c
commit c92974d920
2 changed files with 3 additions and 1 deletions
+2 -1
View File
@@ -9,7 +9,7 @@ namespace tracy
constexpr unsigned Lz4CompressBound( unsigned isize ) { return isize + ( isize / 255 ) + 16; }
enum : uint32_t { ProtocolVersion = 44 };
enum : uint32_t { ProtocolVersion = 45 };
enum : uint16_t { BroadcastVersion = 2 };
using lz4sz_t = uint32_t;
@@ -82,6 +82,7 @@ struct WelcomeMessage
uint64_t delay;
uint64_t resolution;
uint64_t epoch;
uint64_t exectime;
uint64_t pid;
int64_t samplingPeriod;
uint8_t onDemand;