* Wake main thread when a thread is auto freed

This commit is contained in:
Michaël Van Canneyt 2025-04-03 17:12:20 +02:00
parent 1a21ea41b8
commit fc43e66f05

View File

@ -184,6 +184,9 @@ begin
Resume;
end;
{$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;
end;
end;