[Lldb-commits] [lldb] Fix lldb crash while handling concurrent vfork() (PR #81564)
Greg Clayton via lldb-commits
lldb-commits at lists.llvm.org
Tue Feb 20 12:27:10 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.
----------------
clayborg wrote:
```
// Number of fork() or vfork() operations being handled.
```
https://github.com/llvm/llvm-project/pull/81564
More information about the lldb-commits
mailing list