| 88 | } |
| 89 | |
| 90 | void DebuggerService::start() { |
| 91 | _dispatchQueue->async([this]() { |
| 92 | if (_started) { |
| 93 | // Already started |
| 94 | return; |
| 95 | } |
| 96 | |
| 97 | _started = true; |
| 98 | this->doStart(/* attemptNumber */ 1); |
| 99 | }); |
| 100 | } |
| 101 | |
| 102 | void DebuggerService::doStart(int attemptNumber) { |
| 103 | if (_tcpServer != nullptr) { |