1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-28 16:45:09 +00:00

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
parent 54448b5d24
commit 0ed89440f1
5 changed files with 27 additions and 27 deletions

View file

@ -11,8 +11,8 @@ struct CProcessStatistics {
String username;
uid_t uid;
String priority;
size_t linear;
size_t physical;
size_t virtual_size;
size_t physical_size;
unsigned syscalls;
};