[Lldb-commits] [lldb] Fix lldb crash while handling concurrent vfork() (PR #81564)
via lldb-commits
lldb-commits at lists.llvm.org
Tue Feb 20 15:12:56 PST 2024
================
@@ -301,7 +301,8 @@ class ProcessGDBRemote : public Process,
using FlashRange = FlashRangeVector::Entry;
FlashRangeVector m_erased_flash_ranges;
- bool m_vfork_in_progress;
+ // Number of vfork in process.
----------------
jeffreytan81 wrote:
This is only used by vfork() not fork().
https://github.com/llvm/llvm-project/pull/81564
More information about the lldb-commits
mailing list