ProcessManager+top: Rename "linear" size to "virtual" size.

I originally called it "linear" because that's how the Intel manual names
virtual addresses in many cases. I'm ready to accept that most people know
this as "virtual" so let's just call it that.
This commit is contained in:
Andreas Kling 2019-06-07 12:44:29 +02:00
commit 0ed89440f1
Notes: sideshowbarker 2024-07-19 13:41:12 +09:00
5 changed files with 27 additions and 27 deletions

View file

@ -20,7 +20,7 @@ public:
Priority,
User,
PID,
Linear,
Virtual,
Physical,
Syscalls,
__Count
@ -48,8 +48,8 @@ private:
String state;
String user;
String priority;
size_t linear;
size_t physical;
size_t virtual_size;
size_t physical_size;
unsigned syscalls;
float cpu_percent;
};