MCPcopy Create free account
hub / github.com/Vector35/debugger / DebugProcess

Class DebugProcess

api/debuggerapi.h:275–292  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected