diff --git a/utils/system_daemon/main.cpp b/utils/system_daemon/main.cpp index 381e9076..290795c6 100755 --- a/utils/system_daemon/main.cpp +++ b/utils/system_daemon/main.cpp @@ -221,6 +221,7 @@ public: line += ns.expandLeftTo(5, ' ') + " %, u "; ns = PIString::fromNumber(sys_mon.statistic().cpu_load_user).replaceAll(",", "."); ns = ns.left(ns.find('.') + 2); line += ns.expandLeftTo(5, ' ') + " %"; + tile->content << TileList::Row("PID: " + PIString(sys_mon.statistic().ID), CellFormat()); tile->content << TileList::Row(line, CellFormat()); tile->content << TileList::Row("Threads:", CellFormat()); piForeachC (PISystemMonitor::ThreadStats & t, ts)