Add function to deregister a profiler from profiler list
parent
d76957ee22
commit
6833e04bc5
|
@ -164,6 +164,13 @@ public:
|
||||||
m_graphvalues.clear();
|
m_graphvalues.clear();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void remove(const std::string& name)
|
||||||
|
{
|
||||||
|
JMutexAutoLock lock(m_mutex);
|
||||||
|
m_avgcounts.erase(name);
|
||||||
|
m_data.erase(name);
|
||||||
|
}
|
||||||
|
|
||||||
private:
|
private:
|
||||||
JMutex m_mutex;
|
JMutex m_mutex;
|
||||||
std::map<std::string, float> m_data;
|
std::map<std::string, float> m_data;
|
||||||
|
|
Loading…
Reference in New Issue