diff options
| author | 2018-11-16 11:18:00 +0000 | |
|---|---|---|
| committer | 2018-11-19 10:19:02 +0000 | |
| commit | dfa548c047a54278571aa50700143f30ec39d377 (patch) | |
| tree | b1e18cb6e5cd1efdf36a6dcd1fb336aa4756e238 | |
| parent | 7e0404f1d319e34bd52be98e4382a539b2a022dc (diff) | |
Change all uses of uint to int in CpuTimePerThreadFreq
Test: upload WW config with uint change and inspect dump-report
Change-Id: Iee0505b3ddb09eb620631277a05ade88799697ab
| -rw-r--r-- | cmds/statsd/src/atoms.proto | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/cmds/statsd/src/atoms.proto b/cmds/statsd/src/atoms.proto index 9757f32b25ef..5868df8f2d4e 100644 --- a/cmds/statsd/src/atoms.proto +++ b/cmds/statsd/src/atoms.proto @@ -3278,17 +3278,17 @@ message CpuTimePerThreadFreq { // UID that owns the process. optional int32 uid = 1 [(is_uid) = true]; // ID of the process. - optional uint32 process_id = 2; + optional int32 process_id = 2; // ID of the thread. - optional uint32 thread_id = 3; + optional int32 thread_id = 3; // Name of the process taken from `/proc/$PID/cmdline`. optional string process_name = 4; // Name of the thread taken from `/proc/$PID/task/$TID/comm` optional string thread_name = 5; // What frequency the CPU was running at, in KHz - optional uint32 frequency_khz = 6; + optional int32 frequency_khz = 6; // Time spent in frequency in milliseconds, since thread start. - optional uint32 time_millis = 7; + optional int32 time_millis = 7; } /** |