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

Commit 298e07fb authored by Rafal Slawik's avatar Rafal Slawik
Browse files

Rename pgfault and pgmajfault fields

Bug: 115968899
Test: existing tests pass
Change-Id: Iff5932c55941772dda5d85ee1ccdd243ec8856c8
parent c749e15a
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -2356,10 +2356,10 @@ message NativeProcessMemoryState {
  optional string process_name = 2;

  // # of page-faults
  optional int64 pgfault = 3;
  optional int64 page_fault = 3;

  // # of major page-faults
  optional int64 pgmajfault = 4;
  optional int64 page_major_fault = 4;

  // RSS
  optional int64 rss_in_bytes = 5;