[PATCH] D67831: [lldb] Get the TargetAPI lock in SBProcess::IsInstrumentationRuntimePresen
Raphael Isemann via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Fri Oct 4 02:53:22 PDT 2019
This revision was automatically updated to reflect the committed changes.
Closed by commit rL373725: [lldb] Get the TargetAPI lock in SBProcess::IsInstrumentationRuntimePresent (authored by teemperor, committed by ).
Herald added a project: LLVM.
Herald added a subscriber: llvm-commits.
Changed prior to commit:
https://reviews.llvm.org/D67831?vs=221011&id=223179#toc
Repository:
rL LLVM
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D67831/new/
https://reviews.llvm.org/D67831
Files:
lldb/trunk/source/API/SBProcess.cpp
Index: lldb/trunk/source/API/SBProcess.cpp
===================================================================
--- lldb/trunk/source/API/SBProcess.cpp
+++ lldb/trunk/source/API/SBProcess.cpp
@@ -1180,6 +1180,9 @@
if (!process_sp)
return false;
+ std::lock_guard<std::recursive_mutex> guard(
+ process_sp->GetTarget().GetAPIMutex());
+
InstrumentationRuntimeSP runtime_sp =
process_sp->GetInstrumentationRuntime(type);
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D67831.223179.patch
Type: text/x-patch
Size: 446 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20191004/7396195b/attachment.bin>
More information about the llvm-commits
mailing list