FreeBSD: Hide kernel processes.

This was an error. Should be P_KPROC not P_SYSTEM
edi-0.5
Alastair Poole 3 years ago
parent ac9e5c0fbf
commit 0520fe4623
  1. 2
      src/bin/process.c

@ -516,7 +516,7 @@ _process_list_freebsd_get(void)
continue;
}
if (kp.ki_flag & P_SYSTEM)
if (kp.ki_flag & P_KPROC)
continue;
Proc_Stats *p = calloc(1, sizeof(Proc_Stats));

Loading…
Cancel
Save