CmdLine Debugger, thread/async process: Fix unqueuing events, if thread is destroyed

git-svn-id: trunk@58378 -
This commit is contained in:
martin 2018-06-22 17:12:27 +00:00
parent 44053b1a5c
commit 3a01243c22

View File

@ -259,6 +259,8 @@ begin
if FReadThread <> nil then begin
FReadThread.Terminate;
FinishedReadingOutput;
RemoveQueuedEvents(FReadThread, FOnDataAvail);
RemoveQueuedEvents(FReadThread, FOnPipeError);
end;
{$ENDIF}
end;
@ -272,6 +274,8 @@ begin
if FReadThread <> nil then begin
FReadThread.Terminate;
FinishedReadingOutput;
RemoveQueuedEvents(FReadThread, FOnDataAvail);
RemoveQueuedEvents(FReadThread, FOnPipeError);
end;
{$ENDIF}
end;
@ -303,6 +307,9 @@ begin
if FReadThread <> nil then begin
FReadThread.Terminate;
FinishedReadingOutput; // make sure destroy will not wait forever
RemoveQueuedEvents(FReadThread, FOnDataAvail);
RemoveQueuedEvents(FReadThread, FOnPipeError);
FReadThread.WaitFor;
debugln(['DESTROY thread destroying']);
FreeAndNil(FReadThread);
debugln(['DESTROY thread destroyed']);
@ -320,6 +327,9 @@ begin
if FReadThread <> nil then begin
FReadThread.Terminate;
FinishedReadingOutput;
RemoveQueuedEvents(FReadThread, FOnDataAvail);
RemoveQueuedEvents(FReadThread, FOnPipeError);
FReadThread.WaitFor;
debugln(['DESTROY thread destroying']);
FreeAndNil(FReadThread);
debugln(['DESTROY thread destroyed']);