* Allocate min threads

This commit is contained in:
Michaël Van Canneyt 2021-08-17 16:47:00 +02:00
parent 6e8775f2a9
commit 6b36229d3c

View File

@ -851,6 +851,8 @@ end;
function TFPCustomSimpleThreadPool.AddTask(aTask: TThreadPoolTask): Boolean;
begin
While ThreadCount<MinThreads do
FTaskList.AddThread;
CheckQueuedTasks;
Result:=DoAddTask(aTask);
if (not Result) and QueueTasks then