| 677 | } |
| 678 | |
| 679 | bool DebuggerClientDap::pause( int threadId ) { |
| 680 | std::string sessionId = findSessionByThread( threadId ); |
| 681 | if ( sessionId.empty() ) |
| 682 | return false; |
| 683 | nlohmann::json arguments{ { DAP_THREAD_ID, threadId } }; |
| 684 | makeRequest( "pause", arguments, nullptr, sessionId ); |
| 685 | return true; |
| 686 | } |
| 687 | |
| 688 | void DebuggerClientDap::processResponseNext( const Response& response, |
| 689 | const nlohmann::json& request, |