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

Class DebugThread

core/debugadapter.h:93–108  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

91
92
93 struct DebugThread
94 {
95 std::uint32_t m_tid {};
96 std::uintptr_t m_rip {};
97 bool m_isFrozen {};
98
99 DebugThread() {}
100
101 DebugThread(std::uint32_t tid) : m_tid(tid) {}
102
103 DebugThread(std::uint32_t tid, std::uintptr_t rip) : m_tid(tid), m_rip(rip) {}
104
105 bool operator==(const DebugThread& rhs) const { return (m_tid == rhs.m_tid) && (m_rip == rhs.m_rip); }
106
107 bool operator!=(const DebugThread& rhs) const { return !(*this == rhs); }
108 };
109
110
111 struct DebugBreakpoint

Callers 2

GetActiveThreadMethod · 0.50
GetActiveThreadMethod · 0.50

Calls

no outgoing calls

Tested by

no test coverage detected