| 237 | typedef WdStackFrame CPUStackFrame; |
| 238 | |
| 239 | struct WdThreadInfo |
| 240 | { |
| 241 | public: |
| 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 | |
| 256 | public: |
| 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 | |
| 275 | class DbgPendingExpr |
| 276 | { |
no outgoing calls
no test coverage detected