I2P Address: [http://git.idk.i2p]

Skip to content
Snippets Groups Projects
Commit bbbbfe24 authored by zzz's avatar zzz
Browse files

reduce concurrent graph generation for ARM

parent 9ab55ec3
No related branches found
No related tags found
No related merge requests found
......@@ -38,7 +38,7 @@ public class StatSummarizer implements Runnable {
private final List<SummaryListener> _listeners;
// TODO remove static instance
private static StatSummarizer _instance;
private static final int MAX_CONCURRENT_PNG = 3;
private static final int MAX_CONCURRENT_PNG = SystemVersion.isARM() ? 2 : 3;
private final Semaphore _sem;
private volatile boolean _isRunning = true;
private boolean _isDisabled;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment