mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 19:08:10 +00:00
Kernel+ProcessManager: Show per-process syscall counts.
Added a simple syscall counter to the /proc/all contents. :^)
This commit is contained in:
parent
c59f8cd663
commit
c02c6fef28
6 changed files with 22 additions and 4 deletions
|
@ -18,6 +18,7 @@ public:
|
|||
PID,
|
||||
Linear,
|
||||
Physical,
|
||||
Syscalls,
|
||||
__Count
|
||||
};
|
||||
|
||||
|
@ -43,6 +44,7 @@ private:
|
|||
String priority;
|
||||
size_t linear;
|
||||
size_t physical;
|
||||
unsigned syscalls;
|
||||
float cpu_percent;
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue