blob: 361c86421cf1bb0ca39a46567a61c6601ef8726b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
//===-- ContinueRequestHandler.cpp ----------------------------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
#include "DAP.h"
#include "Handler/RequestHandler.h"
#include "LLDBUtils.h"
#include "Protocol/ProtocolRequests.h"
#include "lldb/API/SBError.h"
#include "lldb/API/SBProcess.h"
#include "llvm/Support/Error.h"
using namespace llvm;
using namespace lldb;
using namespace lldb_dap::protocol;
namespace lldb_dap {
/// The request resumes execution of all threads. If the debug adapter supports
/// single thread execution (see capability
/// `supportsSingleThreadExecutionRequests`), setting the `singleThread`
/// argument to true resumes only the specified thread. If not all threads were
/// resumed, the `allThreadsContinued` attribute of the response should be set
/// to false.
Expected<ContinueResponseBody>
ContinueRequestHandler::Run(const ContinueArguments &args) const {
SBProcess process = dap.target.GetProcess();
SBError error;
if (!SBDebugger::StateIsStoppedState(process.GetState()))
return make_error<NotStoppedError>();
if (args.singleThread)
dap.GetLLDBThread(args.threadId).Resume(error);
else
error = process.Continue();
if (error.Fail())
return ToError(error);
ContinueResponseBody body;
body.allThreadsContinued = !args.singleThread;
return body;
}
} // namespace lldb_dap
|