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

Commit 3673e7ff authored by Misha Wagner's avatar Misha Wagner Committed by android-build-merger
Browse files

Merge "Fix issue in CpuTimePerUid where microseconds are used as milliseconds"...

Merge "Fix issue in CpuTimePerUid where microseconds are used as milliseconds" am: 4314aef8 am: f7905eb4
am: 85980756

Change-Id: If1338ca0d87160a79eea251e8c2c87b5b55df980
parents 060248c3 85980756
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -2421,8 +2421,8 @@ message CpuTimePerFreq {
 */
message CpuTimePerUid {
    optional int32 uid = 1 [(is_uid) = true];
    optional uint64 user_time_millis = 2;
    optional uint64 sys_time_millis = 3;
    optional uint64 user_time_micros = 2;
    optional uint64 sys_time_micros = 3;
}

/**