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

Commit f7905eb4 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"

am: 4314aef8

Change-Id: If2cecbfb4d59d3eb803da5161fdad214640d8889
parents e77fbed6 4314aef8
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -1794,8 +1794,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;
}

/**