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

Store announce and terminate time of locks.

This commit is contained in:
Bartosz Taudul
2018-12-16 20:46:02 +01:00
parent f42d52923a
commit 9360df89b1
2 changed files with 22 additions and 0 deletions
+2
View File
@@ -231,6 +231,8 @@ struct LockMap
flat_hash_map<uint64_t, uint8_t, nohash<uint64_t>> threadMap;
std::vector<uint64_t> threadList;
LockType type;
int64_t timeAnnounce;
int64_t timeTerminate;
bool valid;
};