[Lldb-commits] [PATCH] D134882: [lldb] Move breakpoint hit reset code to Target::CreateProcess

Pavel Labath via Phabricator via lldb-commits lldb-commits at lists.llvm.org
Thu Sep 29 11:49:46 PDT 2022


labath added a comment.

I'm not sure what kind of guarantees are you looking for. `m_process_sp` is a private member of the Target class, so it's not like just anyone can come in and change it. There's no way to stop code from inside the Target class from changing it without going through the `CreateProcess` method, but the same can be said about the calls to `WillXXX` methods in the process class.


Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D134882



More information about the lldb-commits mailing list