1
Fork 0
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:
Andreas Kling 2019-04-17 14:48:55 +02:00
parent c59f8cd663
commit c02c6fef28
6 changed files with 22 additions and 4 deletions

View file

@ -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;
};