Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • cellframe/cellframe-node-diagtool
1 result
Show changes
Commits on Source (1)
......@@ -103,7 +103,7 @@ void WinDiagnostic::refresh_win_snapshot()
}
}
QJsonObject WinDiagnostic::get_process_info(int totalRam)
QJsonObject WinDiagnostic::get_process_info(long proc_id, int totalRam)
{
refresh_win_snapshot();
......
......@@ -14,8 +14,8 @@ public:
explicit WinDiagnostic(AbstractDiagnostic* parent = nullptr);
private:
QJsonObject get_sys_info();
QJsonObject get_process_info(int totalRam);
QJsonObject get_sys_info() override;
QJsonObject get_process_info(long pid, int totalRam) override;
long get_memory_size(HANDLE hProc);
ULONGLONG ft2ull(FILETIME &ft);
......