| 71 | |
| 72 | |
| 73 | struct DebugProcess |
| 74 | { |
| 75 | std::uint32_t m_pid {}; |
| 76 | std::string m_processName {}; |
| 77 | |
| 78 | DebugProcess() {} |
| 79 | |
| 80 | DebugProcess(std::uint32_t pid) : m_pid(pid) {} |
| 81 | |
| 82 | DebugProcess(std::uint32_t pid, std::string name) : m_pid(pid), m_processName(name) {} |
| 83 | |
| 84 | bool operator==(const DebugProcess& rhs) const |
| 85 | { |
| 86 | return (m_pid == rhs.m_pid) && (m_processName == rhs.m_processName); |
| 87 | } |
| 88 | |
| 89 | bool operator!=(const DebugProcess& rhs) const { return !(*this == rhs); } |
| 90 | }; |
| 91 | |
| 92 | |
| 93 | struct DebugThread |
nothing calls this directly
no outgoing calls
no test coverage detected