[Lldb-commits] [lldb] [lldb] Respect LaunchInfo::SetExecutable in ProcessLauncherPosixFork (PR #133093)

Pavel Labath via lldb-commits lldb-commits at lists.llvm.org
Wed Mar 26 10:28:31 PDT 2025


================
@@ -94,6 +94,7 @@ struct ForkLaunchInfo {
   bool debug;
   bool disable_aslr;
   std::string wd;
+  std::string executable;
----------------
labath wrote:

They are accessed from the forked process (line 34 in this file), so they need to be async-signal safe  (nothing really guarantees std::string is that, but it's pretty hard to write a `c_str` implementation that isn't).

https://github.com/llvm/llvm-project/pull/133093


More information about the lldb-commits mailing list