Registriert seit: 3. Sep 2004
4.629 Beiträge
Delphi 10.2 Tokyo Starter
|
AW: TTask & Synchronize Verständnisproblem
19. Apr 2017, 22:03
Ja, aber Achtung:
Zitat von System.Threading.pas:
Delphi-Quellcode:
function TThreadPool.SetMaxWorkerThreads(Value: Integer): Boolean;
begin
Result := Value >= TThread.ProcessorCount;
if Result then
TInterlocked.Exchange(FMaxLimitWorkerThreadCount, Value);
end;
Das ist ja echt eine blöde Limitierung
|