Merge pull request #1968 from shartge/improve-check_procs

check_procs: ignore our own children
This commit is contained in:
Lorenz Kästle 2023-12-03 20:00:11 +01:00 committed by GitHub
commit c43d2e9959
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -255,6 +255,13 @@ main (int argc, char **argv)
continue;
}
/* Ignore our own children */
if (procppid == mypid) {
if (verbose >= 3)
printf("not considering - is our child\n");
continue;
}
/* Ignore excluded processes by name */
if(options & EXCLUDE_PROGS) {
int found = 0;