feat: graphing in MTK toolkit, kernel exposes CPU time, Processes app Performance tab

This commit is contained in:
2026-05-02 15:26:59 +02:00
parent e98071e97e
commit 3919d166f7
12 changed files with 553 additions and 11 deletions
+6 -3
View File
@@ -41,9 +41,12 @@ int proclist(ProcInfo* buf, int max); // List all processes (re
**`ProcInfo` struct:**
```cpp
struct ProcInfo {
int pid;
char name[32];
// ... additional fields
int32_t pid;
int32_t parentPid;
uint8_t state;
char name[64];
uint64_t heapUsed;
uint64_t cpuTimeMs;
};
```