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

Rename "threads" to "groups" in find zone data structs.

This commit is contained in:
Bartosz Taudul
2018-07-21 23:41:50 +02:00
parent 36c207fb51
commit d03356c1f5
2 changed files with 31 additions and 31 deletions
+6 -6
View File
@@ -223,10 +223,10 @@ private:
bool show = false;
std::vector<int32_t> match;
std::map<uint64_t, Vector<ZoneEvent*>> threads;
std::map<uint64_t, Vector<ZoneEvent*>> groups;
size_t processed;
int selMatch = 0;
uint64_t selThread = Unselected;
uint64_t selGroup = Unselected;
char pattern[1024] = {};
bool logVal = false;
bool logTime = true;
@@ -239,16 +239,16 @@ private:
void Reset()
{
ResetThreads();
ResetGroups();
match.clear();
selMatch = 0;
selThread = Unselected;
selGroup = Unselected;
highlight.active = false;
}
void ResetThreads()
void ResetGroups()
{
threads.clear();
groups.clear();
processed = 0;
}