================
@@ -182,10 +182,16 @@ void ScriptedProcess::DidResume() {
m_pid = GetInterface().GetProcessID();
}
-Status ScriptedProcess::DoResume() {
+Status ScriptedProcess::DoResume(RunDirection direction) {
LLDB_LOGF(GetLog(LLDBLog::Process), "ScriptedProcess::%s resuming process",
__FUNCTION__);
- return GetInterface().Resume();
+ if (direction == RunDirection::eRunForward) {
+ return GetInterface().Resume();
+ } else {
+ return Status::FromErrorStringWithFormatv(
----------------
rocallahan wrote:
Done.
https://github.com/llvm/llvm-project/pull/112079
_______________________________________________
lldb-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits