| 1416 | |
| 1417 | |
| 1418 | void DebuggerController::WriteStdIn(const std::string message) |
| 1419 | { |
| 1420 | if (m_adapter && m_state->IsRunning()) |
| 1421 | { |
| 1422 | m_adapter->WriteStdin(message); |
| 1423 | } |
| 1424 | else |
| 1425 | { |
| 1426 | NotifyError("Cannot send to stdin, target is not running", "Cannot send to stdin, target is not running"); |
| 1427 | } |
| 1428 | } |
| 1429 | |
| 1430 | |
| 1431 | std::string DebuggerController::InvokeBackendCommand(const std::string& cmd) |
no test coverage detected