1
0
Fork 0
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:
Kirill Ponazdyr 2021-04-03 20:03:54 +02:00 committed by main
parent f5436a5940
commit 456cc977be

View file

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