Rename virtual memory column from M_SIZE to M_VIRT

Closes: #325
This commit is contained in:
Christian Göttsche
2020-11-20 17:09:34 +01:00
committed by BenBE
parent 3e5cba91ce
commit fa002c0ba9
22 changed files with 29 additions and 29 deletions

View File

@ -38,7 +38,7 @@ typedef enum ProcessFields {
NICE = 19,
STARTTIME = 21,
PROCESSOR = 38,
M_SIZE = 39,
M_VIRT = 39,
M_RESIDENT = 40,
ST_UID = 46,
PERCENT_CPU = 47,
@ -97,7 +97,7 @@ typedef struct Process_ {
char starttime_show[8];
time_t starttime_ctime;
long m_size;
long m_virt;
long m_resident;
int exit_signal;