MCPcopy Create free account
hub / github.com/beefytech/Beef / WdThreadInfo

Class WdThreadInfo

IDEHelper/WinDebugger.h:239–273  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

237typedef WdStackFrame CPUStackFrame;
238
239struct WdThreadInfo
240{
241public:
242 uint mProcessId;
243 uint mThreadId;
244 HANDLE mHThread;
245 void* mThreadLocalBase;
246 void* mStartAddress;
247 bool mIsBreakRestorePaused;
248 bool mFrozen;
249 addr_target mStartSP;
250 String mName;
251 addr_target mStoppedAtAddress;
252 addr_target mIsAtBreakpointAddress;
253 addr_target mBreakpointAddressContinuing;
254 int mMemoryBreakpointVersion;
255
256public:
257 WdThreadInfo()
258 {
259 mProcessId = 0;
260 mThreadId = 0;
261 mHThread = 0;
262 mStartSP = 0;
263 mThreadLocalBase = NULL;
264 mStartAddress = NULL;
265 mIsBreakRestorePaused = false;
266 mFrozen = false;
267
268 mIsAtBreakpointAddress = 0;
269 mStoppedAtAddress = 0;
270 mBreakpointAddressContinuing = 0;
271 mMemoryBreakpointVersion = 0;
272 }
273};
274
275class DbgPendingExpr
276{

Callers 2

WinDebuggerMethod · 0.85
CleanupDebugEvalMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected