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

Calculate min/max time spans for source locations.

This commit is contained in:
Bartosz Taudul
2018-03-18 20:15:45 +01:00
parent 43c3fe25ba
commit 0f1f7c6813
2 changed files with 25 additions and 1 deletions
+4 -1
View File
@@ -2,6 +2,7 @@
#define __TRACYWORKER_HPP__
#include <atomic>
#include <limits>
#include <map>
#include <string>
#include <thread>
@@ -34,9 +35,11 @@ class Worker
{
struct SourceLocationZones
{
SourceLocationZones() {}
SourceLocationZones() : min( std::numeric_limits<int64_t>::max() ), max( std::numeric_limits<int64_t>::min() ) {}
Vector<ZoneEvent*> zones;
int64_t min;
int64_t max;
};
struct DataBlock