| 833 | |
| 834 | |
| 835 | uint64_t DebuggerState::StackPointer() |
| 836 | { |
| 837 | // TODO: we would better have the DebugAdapter either tell us which register holds the stack pointer |
| 838 | if (!IsConnected()) |
| 839 | return 0; |
| 840 | |
| 841 | return m_adapter->GetStackPointer(); |
| 842 | } |
| 843 | |
| 844 | |
| 845 | bool DebuggerState::SetActiveThread(const DebugThread& thread) |
no test coverage detected