From 9b30d697103e82030d967955940ad998519fa0ed Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dag-Erling=20Sm=C3=B8rgrav?= Date: Mon, 12 Jul 2004 08:22:32 +0000 Subject: Adjust the show_self code (the test got inadvertantly reversed a couple of revisions ago) Submitted by: Alex Vasylenko --- usr.bin/top/machine.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'usr.bin/top') diff --git a/usr.bin/top/machine.c b/usr.bin/top/machine.c index 698172731c70..180d67b9b714 100644 --- a/usr.bin/top/machine.c +++ b/usr.bin/top/machine.c @@ -528,7 +528,7 @@ get_process_info(struct system_info *si, struct process_select *sel, /* set up flags which define what we are going to select */ show_idle = sel->idle; - show_self = sel->self; + show_self = sel->self == -1; show_system = sel->system; show_uid = sel->uid != -1; show_command = sel->command != NULL; @@ -544,8 +544,8 @@ get_process_info(struct system_info *si, struct process_select *sel, for (pp = pbase, i = 0; i < nproc; pp++, i++) { if (pp->ki_stat == 0) - /* not in use */ - continue; + /* not in use */ + continue; if (!show_self && pp->ki_pid == sel->self) /* skip self */ -- cgit v1.2.3