| 39 | } |
| 40 | |
| 41 | void LldbFrameStackModel::fetchThreads() |
| 42 | { |
| 43 | // TODO: preliminary test shows there might be a bug in lldb-mi |
| 44 | // that's causing std::logic_error when executing -thread-info with |
| 45 | // more than one threads. Find a workaround for this (and report bug |
| 46 | // if it truly is). |
| 47 | session()->addCommand(ThreadInfo, QString(), this, &LldbFrameStackModel::handleThreadInfo); |
| 48 | } |
| 49 | |
| 50 | void LldbFrameStackModel::handleThreadInfo(const ResultRecord& r) |
| 51 | { |
nothing calls this directly
no test coverage detected