mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-06 21:18:01 +02:00
CmdLine Debugger, thread/async process: Fix unqueuing events, if thread is destroyed
git-svn-id: trunk@58378 -
This commit is contained in:
parent
44053b1a5c
commit
3a01243c22
@ -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']);
|
||||
|
Loading…
Reference in New Issue
Block a user