| 178 | } |
| 179 | |
| 180 | void DebugSession::continueDbg(integer threadId) |
| 181 | { |
| 182 | if (!raw) |
| 183 | return; |
| 184 | |
| 185 | ContinueRequest request; |
| 186 | request.threadId = threadId; |
| 187 | raw->continueDbg(request); |
| 188 | } |
| 189 | |
| 190 | void DebugSession::reverseContinue(integer threadId) |
| 191 | { |
no outgoing calls
no test coverage detected