Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b3d36b76 authored by Adam Lesinski's avatar Adam Lesinski Committed by android-build-merger
Browse files

Register isolated UIDs before reporting process state am: e2b78ac6

am: c526e02c

Change-Id: I61761e1dd205357023d2095f234e9e76a8047adf
parents 522a61be c526e02c
Loading
Loading
Loading
Loading
+8 −3
Original line number Diff line number Diff line
@@ -3780,9 +3780,6 @@ public final class ActivityManagerService extends ActivityManagerNative
            checkTime(startTime, "startProcess: returned from zygote!");
            Trace.traceEnd(Trace.TRACE_TAG_ACTIVITY_MANAGER);
            if (app.isolated) {
                mBatteryStatsService.addIsolatedUid(app.uid, app.info.uid);
            }
            mBatteryStatsService.noteProcessStart(app.processName, app.info.uid);
            checkTime(startTime, "startProcess: done updating battery stats");
@@ -11457,6 +11454,14 @@ public final class ActivityManagerService extends ActivityManagerNative
                // the uid of the isolated process is specified by the caller.
                uid = isolatedUid;
            }
            // Register the isolated UID with this application so BatteryStats knows to
            // attribute resource usage to the application.
            //
            // NOTE: This is done here before addProcessNameLocked, which will tell BatteryStats
            // about the process state of the isolated UID *before* it is registered with the
            // owning application.
            mBatteryStatsService.addIsolatedUid(uid, info.uid);
        }
        final ProcessRecord r = new ProcessRecord(stats, info, proc, uid);
        if (!mBooted && !mBooting