소스 검색

* Allocate min threads

Michaël Van Canneyt 4 년 전
부모
커밋
6b36229d3c
1개의 변경된 파일2개의 추가작업 그리고 0개의 파일을 삭제
  1. 2 0
      packages/fcl-base/src/fpthreadpool.pp

+ 2 - 0
packages/fcl-base/src/fpthreadpool.pp

@@ -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