[Lldb-commits] [PATCH] D148400: [lldb] Fix bug to update process public run lock with process state
    Jonas Devlieghere via Phabricator via lldb-commits 
    lldb-commits at lists.llvm.org
       
    Tue Apr 18 21:22:50 PDT 2023
    
    
  
JDevlieghere added inline comments.
================
Comment at: lldb/source/Target/Process.cpp:404-414
+llvm::StringRef Process::GetAttachSynchronousHijackListenerName() {
+  return "lldb.internal.Process.AttachSynchronous.hijack";
+}
+
+llvm::StringRef Process::GetLaunchSynchronousHijackListenerName() {
+  return "lldb.internal.Process.LaunchSynchronous.hijack";
+}
----------------
Do these actually need to be methods? Can't these be public static `StringRef`s instead?
CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D148400/new/
https://reviews.llvm.org/D148400
    
    
More information about the lldb-commits
mailing list