[Lldb-commits] [lldb] [LLDB][SaveCore] Add SBCoreDumpOptions Object, and SBProcess::SaveCore() overload (PR #98403)
Greg Clayton via lldb-commits
lldb-commits at lists.llvm.org
Wed Jul 17 14:10:41 PDT 2024
================
@@ -178,6 +178,8 @@ class PluginManager {
static bool UnregisterPlugin(ObjectFileCreateInstance create_callback);
+ static bool IsRegisteredPluginName(const char *name);
----------------
clayborg wrote:
This function name needs to be more complete to say we are searching for a valid object file plug-in name because we have many different kinds of plugins use the same type as the way names are stored, so use `llvm::StringRef`:
```
static bool IsRegisteredObjectFilePluginName(llvm::StringRef name);
```
https://github.com/llvm/llvm-project/pull/98403
More information about the lldb-commits
mailing list