We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 41af0db commit 6385603Copy full SHA for 6385603
entries/sbalazs/README.md
@@ -1,3 +1,5 @@
1
# Székely Balázs
2
3
This entry is made via email since the person in question no longer has a GitHub account.
4
+Usage: obrc <source_file> <threadCnt(optional-default 16)>
5
+The default and minimal thread count is 16.
entries/sbalazs/src/obrc.lpr
@@ -28,7 +28,11 @@
28
end;
29
30
if (Trim(ParamStr(2)) <> '') then
31
- TC := StrToIntDef(ParamStr(2), 16)
+ begin
32
+ TC := StrToIntDef(ParamStr(2), 16);
33
+ if TC < 16 then
34
+ TC := 16;
35
+ end
36
else
37
TC := 16;
38
0 commit comments