14 lines
423 B
Diff
14 lines
423 B
Diff
|
diff --git a/src/util.cc b/src/util.cc
|
||
|
index 84de879..0ac9ec7 100644
|
||
|
--- a/src/util.cc
|
||
|
+++ b/src/util.cc
|
||
|
@@ -585,7 +585,7 @@ double GetLoadAverage() {
|
||
|
// Calculation taken from comment in libperfstats.h
|
||
|
return double(cpu_stats.loadavg[0]) / double(1 << SBITS);
|
||
|
}
|
||
|
-#elif defined(__UCLIBC__)
|
||
|
+#elif defined(__UCLIBC__) || defined(__ANDROID__)
|
||
|
double GetLoadAverage() {
|
||
|
struct sysinfo si;
|
||
|
if (sysinfo(&si) != 0)
|