mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 19:48:01 +02:00
* Wake main thread when a thread is auto freed
This commit is contained in:
parent
1a21ea41b8
commit
fc43e66f05
@ -184,6 +184,9 @@ begin
|
|||||||
Resume;
|
Resume;
|
||||||
end;
|
end;
|
||||||
{$IFDEF DEBUGWASMTHREADS}DebugWriteln('TThread.SysDestroy: waiting on thread');{$ENDIF}
|
{$IFDEF DEBUGWASMTHREADS}DebugWriteln('TThread.SysDestroy: waiting on thread');{$ENDIF}
|
||||||
|
// Before calling WaitFor, signal main thread with WakeMainThread, so pending checksynchronize calls are handled.
|
||||||
|
if assigned(WakeMainThread) then
|
||||||
|
WakeMainThread(Self);
|
||||||
WaitFor;
|
WaitFor;
|
||||||
end;
|
end;
|
||||||
end;
|
end;
|
||||||
|
Loading…
Reference in New Issue
Block a user