Check processes for using deleted shared libraries

Shared libraries can be replaced by an upgrade, highlight processes
using deleted shared libraries.

Link with highlightDeletedExe setting, enabled by default.

Currently only checked on Linux.
This commit is contained in:
Christian Göttsche
2021-04-04 18:07:26 +02:00
committed by cgzones
parent 94d37989b4
commit 8154125d4b
3 changed files with 77 additions and 39 deletions

View File

@ -163,6 +163,9 @@ typedef struct Process_ {
/* Tells if the executable has been replaced in the filesystem since start */
bool procExeDeleted;
/* Tells if the process uses replaced shared libraries since start */
bool usesDeletedLib;
/* CPU number last executed on */
int processor;