blob: e332a89cd5a6ab89c97f2ed27f40b8f85569b046 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
diff --git a/ProcessList.c b/ProcessList.c
--- a/ProcessList.c (revision 7a7c6938aad999f33ceb1e4ec5ebaada4c461f29)
+++ b/ProcessList.c (date 1681664316383)
@@ -132,6 +132,8 @@
}
void ProcessList_printHeader(const ProcessList* this, RichString* header) {
+ return;
+
RichString_rewind(header, RichString_size(header));
const Settings* settings = this->settings;
@@ -451,6 +453,7 @@
}
void ProcessList_scan(ProcessList* this, bool pauseProcessUpdate) {
+ pauseProcessUpdate = true;
// in pause mode only gather global data for meters (CPU/memory/...)
if (pauseProcessUpdate) {
ProcessList_goThroughEntries(this, true);
|