mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-05-11 13:42:52 +00:00
Kernel: Expose process executable paths in /proc/all
This commit is contained in:
parent
87492e723b
commit
21ccbc2167
Notes:
sideshowbarker
2024-07-19 00:34:28 +09:00
Author: https://github.com/awesomekling
Commit: 21ccbc2167
4 changed files with 5 additions and 4 deletions
|
@ -64,6 +64,7 @@ HashMap<pid_t, Core::ProcessStatistics> ProcessStatisticsReader::get_all()
|
|||
process.ppid = process_object.get("ppid").to_u32();
|
||||
process.nfds = process_object.get("nfds").to_u32();
|
||||
process.name = process_object.get("name").to_string();
|
||||
process.executable = process_object.get("executable").to_string();
|
||||
process.tty = process_object.get("tty").to_string();
|
||||
process.pledge = process_object.get("pledge").to_string();
|
||||
process.veil = process_object.get("veil").to_string();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue