Update timestamps for the special process scans at startup also

Resolves https://github.com/htop-dev/htop/issues/592
This commit is contained in:
Nathan Scott
2021-04-08 09:26:48 +10:00
parent f3a37f9ef3
commit 367561175a
2 changed files with 7 additions and 5 deletions

View File

@ -35,9 +35,11 @@ ProcessList* ProcessList_init(ProcessList* this, const ObjectClass* klass, Users
// set later by platform-specific code
this->cpuCount = 0;
this->monotonicMs = 0;
// always maintain valid realtime timestamps
Platform_gettime_realtime(&this->realtime, &this->realtimeMs);
#ifdef HAVE_LIBHWLOC
this->topologyOk = false;
if (hwloc_topology_init(&this->topology) == 0) {