From 5d3dffbaa031fd27509ce5978ca4b8ee8c1f74d1 Mon Sep 17 00:00:00 2001 From: zzz Date: Sat, 11 Feb 2023 04:43:31 -0500 Subject: [PATCH] Util: Increase memory required to not be slow --- core/java/src/net/i2p/util/SystemVersion.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/java/src/net/i2p/util/SystemVersion.java b/core/java/src/net/i2p/util/SystemVersion.java index b33bda992..9a7765771 100644 --- a/core/java/src/net/i2p/util/SystemVersion.java +++ b/core/java/src/net/i2p/util/SystemVersion.java @@ -81,7 +81,7 @@ public abstract class SystemVersion { (_isGentoo && GENTOO_USER.equals(System.getProperty("user.name")))); _isService = _isLinuxService || _isWindowsService; // we assume the Apple M1 is not slow, however isSlow() below will still return true until we have a jbigi - _isSlow = _isAndroid || _isApache || (_isArm && !_isMac) || _isGNU || _isZero || getMaxMemory() < 48*1024*1024L; + _isSlow = _isAndroid || _isApache || (_isArm && !_isMac) || _isGNU || _isZero || getMaxMemory() < 96*1024*1024L; int sdk = 0; if (_isAndroid) {