[Lldb-commits] [lldb] [lldb][debugserver] Synchronize interrupt and resume signals (PR #131073)

via lldb-commits lldb-commits at lists.llvm.org
Thu Mar 13 10:26:46 PDT 2025


================
@@ -1573,6 +1576,8 @@ static uint64_t bits(uint64_t value, uint32_t msbit, uint32_t lsbit) {
 }
 
 bool MachProcess::Interrupt() {
+  PTHREAD_MUTEX_LOCKER(locker, m_exception_and_signal_mutex);
+
----------------
jimingham wrote:

Would it be better to put this mutex lock after the IsRunning(state) on line 1582.  You aren't doing anything that requires the mutex till then, and in general it's better to scope this as narrowly as possible.

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


More information about the lldb-commits mailing list