| 32 | } |
| 33 | |
| 34 | void CEtwView::AddEvent(std::shared_ptr<EventData> data) { |
| 35 | { |
| 36 | std::lock_guard lock(m_EventsLock); |
| 37 | m_TempEvents.push_back(data); |
| 38 | } |
| 39 | } |
| 40 | |
| 41 | void CEtwView::StartMonitoring(TraceManager& tm, bool start) { |
| 42 | if (start) { |
no test coverage detected