summaryrefslogtreecommitdiffstats
path: root/ProcessList.c
diff options
context:
space:
mode:
authorBenny Baumann <BenBE@geshi.org>2021-04-18 18:10:04 +0200
committerBenBE <BenBE@geshi.org>2021-05-23 09:22:21 +0200
commita61a2e6d470b3a5d075a5ba7d8d4cd37ef3f78b5 (patch)
treeb359bec3f5e3a6defdc7483772f5b96c51f0f666 /ProcessList.c
parentbcb18ef82269c68d54a160290e5f8b2e939674ec (diff)
Call makeCommandStr on all platforms
Diffstat (limited to 'ProcessList.c')
-rw-r--r--ProcessList.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ProcessList.c b/ProcessList.c
index 4905f4f5..da5d7a91 100644
--- a/ProcessList.c
+++ b/ProcessList.c
@@ -609,6 +609,8 @@ void ProcessList_scan(ProcessList* this, bool pauseProcessUpdate) {
for (int i = Vector_size(this->processes) - 1; i >= 0; i--) {
Process* p = (Process*) Vector_get(this->processes, i);
+ Process_makeCommandStr(p);
+
if (p->tombStampMs > 0) {
// remove tombed process
if (this->monotonicMs >= p->tombStampMs) {
@@ -623,8 +625,6 @@ void ProcessList_scan(ProcessList* this, bool pauseProcessUpdate) {
// immediately remove
ProcessList_remove(this, p);
}
- } else {
- p->updated = false;
}
}

© 2014-2024 Faster IT GmbH | imprint | privacy policy