[Lldb-commits] [lldb] [lldb][Windows] Synchronize on LOAD_DLL_DEBUG_EVENT in lldb-server (PR #203334)
Adrian Prantl via lldb-commits
lldb-commits at lists.llvm.org
Fri Jun 12 07:32:49 PDT 2026
================
@@ -4496,6 +4496,11 @@ std::vector<std::string> GDBRemoteCommunicationServerLLGS::HandleFeatures(
.Case("vfork-events+", Extension::vfork)
.Default({});
+ if (bool(plugin_features & Extension::libraries))
----------------
adrian-prantl wrote:
I think the idiomatic LLDB style for this is to use
```suggestion
if (Flags(plugin_features).AllSet(Extension::libraries))
```
https://github.com/llvm/llvm-project/pull/203334
More information about the lldb-commits
mailing list