mirror of
https://github.com/M66B/FairEmail.git
synced 2026-03-31 06:08:31 +02:00
Use min. 8 threads
This commit is contained in:
@@ -296,7 +296,7 @@ public class Helper {
|
||||
// java.lang.OutOfMemoryError: pthread_create (1040KB stack) failed: Try again
|
||||
// 1040 KB native stack size / 32 KB thread stack size ~ 32 threads
|
||||
int processors = Runtime.getRuntime().availableProcessors(); // Modern devices: 8
|
||||
threads = processors * 2;
|
||||
threads = Math.max(8, processors * 2);
|
||||
}
|
||||
|
||||
if (threads == 0)
|
||||
|
||||
Reference in New Issue
Block a user