[Lldb-commits] [PATCH] D98822: [lldb] follow-fork/vfork support [WIP]

Jim Ingham via Phabricator via lldb-commits lldb-commits at lists.llvm.org
Fri Mar 19 10:03:01 PDT 2021


jingham added a comment.

The gdb model - since gdb only supports one debugee per gdb - is to either follow the fork or follow the parent.  It would be more in keeping with lldb's model to make a new target for the child side of the fork, and use that to follow the child.  That way you can continue to debug both the parent and the child processes.  It doesn't look like you've gotten that far yet, but IMO that's the direction we should be going for lldb.


CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D98822/new/

https://reviews.llvm.org/D98822



More information about the lldb-commits mailing list