Skip to content

Commit 015ec40

Browse files
committed
set min thread count to 8 in the Székely Balázs version
1 parent 9fb3dd0 commit 015ec40

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

entries/sbalazs/src/obrc.lpr

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,12 @@
2929

3030
if (Trim(ParamStr(2)) <> '') then
3131
begin
32-
TC := StrToIntDef(ParamStr(2), 16);
33-
if TC < 16 then
34-
TC := 16;
32+
TC := StrToIntDef(ParamStr(2), 8);
33+
if TC < 8 then
34+
TC := 8;
3535
end
3636
else
37-
TC := 16;
37+
TC := 8;
3838

3939
FWSManager := TWSManager.Create(ParamStr(1), TC);
4040
FWSManager.WSThreadsWatcher.Start;

0 commit comments

Comments
 (0)