summaryrefslogtreecommitdiffstats
path: root/core/java/android/app/ActivityThread.java
diff options
context:
space:
mode:
Diffstat (limited to 'core/java/android/app/ActivityThread.java')
-rw-r--r--core/java/android/app/ActivityThread.java8
1 files changed, 5 insertions, 3 deletions
diff --git a/core/java/android/app/ActivityThread.java b/core/java/android/app/ActivityThread.java
index acf41ee..d816193 100644
--- a/core/java/android/app/ActivityThread.java
+++ b/core/java/android/app/ActivityThread.java
@@ -3487,9 +3487,11 @@ public final class ActivityThread {
callbacks.get(i).onLowMemory();
}
- // Ask SQLite to free up as much memory as it can, mostly from it's page caches
- int sqliteReleased = SQLiteDatabase.releaseMemory();
- EventLog.writeEvent(SQLITE_MEM_RELEASED_EVENT_LOG_TAG, sqliteReleased);
+ // Ask SQLite to free up as much memory as it can, mostly from its page caches.
+ if (Process.myUid() != Process.SYSTEM_UID) {
+ int sqliteReleased = SQLiteDatabase.releaseMemory();
+ EventLog.writeEvent(SQLITE_MEM_RELEASED_EVENT_LOG_TAG, sqliteReleased);
+ }
BinderInternal.forceGc("mem");
}