| 273 | |
| 274 | |
| 275 | struct DebugProcess |
| 276 | { |
| 277 | std::uint32_t m_pid {}; |
| 278 | std::string m_processName {}; |
| 279 | |
| 280 | DebugProcess() {} |
| 281 | |
| 282 | DebugProcess(std::uint32_t pid) : m_pid(pid) {} |
| 283 | |
| 284 | DebugProcess(std::uint32_t pid, std::string name) : m_pid(pid), m_processName(name) {} |
| 285 | |
| 286 | bool operator==(const DebugProcess& rhs) const |
| 287 | { |
| 288 | return (m_pid == rhs.m_pid) && (m_processName == rhs.m_processName); |
| 289 | } |
| 290 | |
| 291 | bool operator!=(const DebugProcess& rhs) const { return !(*this == rhs); } |
| 292 | }; |
| 293 | |
| 294 | |
| 295 | struct DebugThread |
nothing calls this directly
no outgoing calls
no test coverage detected