diff options
Diffstat (limited to 'lldb/source/Target/TargetList.cpp')
-rw-r--r-- | lldb/source/Target/TargetList.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Target/TargetList.cpp b/lldb/source/Target/TargetList.cpp index 34abd43e0a6..dae859d77fa 100644 --- a/lldb/source/Target/TargetList.cpp +++ b/lldb/source/Target/TargetList.cpp @@ -349,7 +349,7 @@ TargetList::SendAsyncInterrupt (lldb::pid_t pid) Process* process = target_sp->GetProcessSP().get(); if (process) { - process->BroadcastEvent (Process::eBroadcastBitInterrupt, NULL); + process->SendAsyncInterrupt(); ++num_async_interrupts_sent; } } |