From 27b8d81ed26098f9b7dd7e0feb5d8b11fdda4288 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20G=C3=B6ttsche?= Date: Sun, 13 Dec 2020 13:18:38 +0100 Subject: [PATCH] ProcessList: save scan time in millisecond The delay is saved in deciseconds, use a bigger resolution to avoid timing irregularities. --- Process.c | 2 +- ProcessList.c | 6 ++++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/Process.c b/Process.c index 0a954d49..c5ce737d 100644 --- a/Process.c +++ b/Process.c @@ -454,7 +454,7 @@ void Process_toggleTag(Process* this) { bool Process_isNew(const Process* this) { assert(this->processList); if (this->processList->scanTs >= this->seenTs) { - return this->processList->scanTs - this->seenTs <= this->processList->settings->highlightDelaySecs; + return this->processList->scanTs - this->seenTs <= 1000 * this->processList->settings->highlightDelaySecs; } return false; } diff --git a/ProcessList.c b/ProcessList.c index b7800e49..ee09edc8 100644 --- a/ProcessList.c +++ b/ProcessList.c @@ -539,7 +539,9 @@ void ProcessList_scan(ProcessList* this, bool pauseProcessUpdate) { this->scanTs = 0; firstScanDone = true; } else if (Compat_clock_monotonic_gettime(&now) == 0) { - this->scanTs = now.tv_sec + now.tv_nsec / 1000000000; + // save time in millisecond, so with a delay in deciseconds + // there are no irregularities + this->scanTs = 1000 * now.tv_sec + now.tv_nsec / 1000000; } ProcessList_goThroughEntries(this, false); @@ -555,7 +557,7 @@ void ProcessList_scan(ProcessList* this, bool pauseProcessUpdate) { // process no longer exists if (this->settings->highlightChanges && p->wasShown) { // mark tombed - p->tombTs = this->scanTs + this->settings->highlightDelaySecs; + p->tombTs = this->scanTs + 1000 * this->settings->highlightDelaySecs; } else { // immediately remove ProcessList_remove(this, p);