1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-22 21:57:35 +00:00

ProcessManager: Add process owner's username to table view.

This commit is contained in:
Andreas Kling 2019-02-28 14:12:53 +01:00
parent 62b4f39cd4
commit c1f5f2694b
3 changed files with 18 additions and 3 deletions

View file

@ -40,6 +40,7 @@ private:
ProcessState previous_state;
};
HashMap<uid_t, String> m_usernames;
HashMap<pid_t, OwnPtr<Process>> m_processes;
Vector<pid_t> m_pids;
int m_selected_row { -1 };