| 127 | } |
| 128 | |
| 129 | void PolledLogSource::Signal() |
| 130 | { |
| 131 | std::lock_guard<std::mutex> lock(m_mutex); |
| 132 | if (!m_lines.empty()) |
| 133 | SetEvent(m_handle.get()); |
| 134 | } |
| 135 | |
| 136 | } // namespace debugviewpp |
| 137 | } // namespace fusion |
nothing calls this directly
no test coverage detected