Debugger: Stopping the debugger now kills the debugged process in external debugging mode without crashing if the debugged process does not exist anymore.
[DEVELOPMENT ENVIRONMENT] * BUG: Debugger: Stopping the debugger now kills the debugged process in external debugging mode without crashing if the debugged process does not exist anymore.
This commit is contained in:
parent
fe618d41a8
commit
a4920f1181
1 changed files with 1 additions and 1 deletions
|
@ -693,7 +693,7 @@ Public Sub Stop()
|
|||
Try $hProcess.Kill
|
||||
$hProcess.Wait(1)
|
||||
Else If $bExtern Then
|
||||
If ProcessId > 0 Then Signal.Send(ProcessId, Signal.SIGKILL)
|
||||
If ProcessId > 0 Then Try Signal.Send(ProcessId, Signal.SIGKILL)
|
||||
Endif
|
||||
AfterStop
|
||||
|
||||
|
|
Loading…
Reference in a new issue