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

SystemMonitor: Display processes and their threads in a tree :^)

This shows all non-main threads as children of the process they belong
to. We also show the TID as that is important to distinguish the
different threads in one process.

Fixes #65

:skeleyak:
This commit is contained in:
kleines Filmröllchen 2022-04-05 00:32:37 +02:00 committed by Andreas Kling
parent cd5ed44f64
commit 0a61b45b64
4 changed files with 265 additions and 54 deletions

View file

@ -23,9 +23,11 @@
spacing: 0
}
@GUI::TableView {
@GUI::TreeView {
name: "process_table"
column_headers_visible: true
should_fill_selected_rows: true
selection_behavior: "SelectRows"
}
}