mirror of
https://github.com/ton-blockchain/ton
synced 2025-02-12 11:12:16 +00:00
Increase thread limit to 256
This commit is contained in:
parent
f5436a5940
commit
456cc977be
1 changed files with 1 additions and 1 deletions
|
@ -163,7 +163,7 @@ int main(int argc, char* const argv[]) {
|
|||
break;
|
||||
case 'w':
|
||||
threads = atoi(optarg);
|
||||
CHECK(threads > 0 && threads <= 128);
|
||||
CHECK(threads > 0 && threads <= 256);
|
||||
break;
|
||||
case 't': {
|
||||
int timeout = atoi(optarg);
|
||||
|
|
Loading…
Reference in a new issue