Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
cellframe-node-diagtool
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
cellframe
cellframe-node-diagtool
Compare revisions
5009a6d3f5658fcea9289b016323b72080b841c5 to cfec047b31500619a00216f0486e807725ba8929
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
cellframe/cellframe-node-diagtool
Select target project
No results found
cfec047b31500619a00216f0486e807725ba8929
Select Git revision
Swap
Target
cellframe/cellframe-node-diagtool
Select target project
cellframe/cellframe-node-diagtool
1 result
5009a6d3f5658fcea9289b016323b72080b841c5
Select Git revision
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (1)
...
· cfec047b
Denis Sumin
authored
2 weeks ago
cfec047b
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
CellframeNodeDiagtool/WinDiagnostic.cpp
+1
-1
1 addition, 1 deletion
CellframeNodeDiagtool/WinDiagnostic.cpp
CellframeNodeDiagtool/WinDiagnostic.h
+2
-2
2 additions, 2 deletions
CellframeNodeDiagtool/WinDiagnostic.h
with
3 additions
and
3 deletions
CellframeNodeDiagtool/WinDiagnostic.cpp
View file @
cfec047b
...
...
@@ -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
();
...
...
This diff is collapsed.
Click to expand it.
CellframeNodeDiagtool/WinDiagnostic.h
View file @
cfec047b
...
...
@@ -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
);
...
...
This diff is collapsed.
Click to expand it.