File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -434,6 +434,10 @@ process's used physical memory).
434434.B M_SHARE (SHR)
435435The size of the process's shared pages.
436436.TP
437+ .B M_PRIV (PRIV)
438+ The private memory size of the process (i.e. the resident set size minus the
439+ shared memory size).
440+ .TP
437441.B M_TRS (CODE)
438442The text resident set size of the process (i.e. the size of the process's
439443executable instructions).
Original file line number Diff line number Diff line change @@ -90,7 +90,7 @@ bool Running_containerized = false;
9090const ScreenDefaults Platform_defaultScreens [] = {
9191 {
9292 .name = "Main" ,
93- .columns = "PID USER PRIORITY NICE M_VIRT M_RESIDENT M_SHARE STATE PERCENT_CPU PERCENT_MEM TIME Command" ,
93+ .columns = "PID USER PRIORITY NICE M_VIRT M_RESIDENT M_PRIV STATE PERCENT_CPU PERCENT_MEM TIME Command" ,
9494 .sortKey = "PERCENT_CPU" ,
9595 },
9696 {
Original file line number Diff line number Diff line change @@ -60,7 +60,7 @@ Platform* pcp;
6060const ScreenDefaults Platform_defaultScreens [] = {
6161 {
6262 .name = "Main" ,
63- .columns = "PID USER PRIORITY NICE M_VIRT M_RESIDENT M_SHARE STATE PERCENT_CPU PERCENT_MEM TIME Command" ,
63+ .columns = "PID USER PRIORITY NICE M_VIRT M_RESIDENT M_PRIV STATE PERCENT_CPU PERCENT_MEM TIME Command" ,
6464 .sortKey = "PERCENT_CPU" ,
6565 },
6666 {
You can’t perform that action at this time.
0 commit comments