Loading services/core/java/com/android/server/am/AppExitInfoTracker.java +6 −4 Original line number Diff line number Diff line Loading @@ -189,12 +189,14 @@ public final class AppExitInfoTracker { } void onSystemReady() { registerForUserRemoval(); registerForPackageRemoval(); IoThread.getHandler().post(() -> { // Read the sysprop set by lmkd and set this to persist so app could read it. SystemProperties.set("persist.sys.lmk.reportkills", Boolean.toString(SystemProperties.getBoolean("sys.lmk.reportkills", false))); registerForUserRemoval(); registerForPackageRemoval(); IoThread.getHandler().post(this::loadExistingProcessExitInfo); loadExistingProcessExitInfo(); }); } @GuardedBy("mService") Loading Loading
services/core/java/com/android/server/am/AppExitInfoTracker.java +6 −4 Original line number Diff line number Diff line Loading @@ -189,12 +189,14 @@ public final class AppExitInfoTracker { } void onSystemReady() { registerForUserRemoval(); registerForPackageRemoval(); IoThread.getHandler().post(() -> { // Read the sysprop set by lmkd and set this to persist so app could read it. SystemProperties.set("persist.sys.lmk.reportkills", Boolean.toString(SystemProperties.getBoolean("sys.lmk.reportkills", false))); registerForUserRemoval(); registerForPackageRemoval(); IoThread.getHandler().post(this::loadExistingProcessExitInfo); loadExistingProcessExitInfo(); }); } @GuardedBy("mService") Loading