| 108 | } |
| 109 | |
| 110 | void PolledLogSource::AddMessage(DWORD pid, const std::string& processName, const std::string& message) |
| 111 | { |
| 112 | std::lock_guard<std::mutex> lock(m_mutex); |
| 113 | m_lines.push_back(PollLine(pid, processName, message, this)); |
| 114 | } |
| 115 | |
| 116 | void PolledLogSource::AddMessage(const std::string& message) |
| 117 | { |