12 lines
273 B
Text
12 lines
273 B
Text
Index: src/util.cpp
|
|
--- src/util.cpp.orig
|
|
+++ src/util.cpp
|
|
@@ -538,6 +538,8 @@ bool Util::isMemoryLow()
|
|
meminfo.close();
|
|
LOG_INFO() << "available RAM = " << availableKB << "KB";
|
|
return availableKB < kLowMemoryThresholdKB;
|
|
+#else
|
|
+ return false;
|
|
#endif
|
|
}
|
|
|