Adjust the show_self code (the test got inadvertantly reversed a couple of

revisions ago)

Submitted by:	Alex Vasylenko <lxv@omut.org>
This commit is contained in:
Dag-Erling Smørgrav 2004-07-12 08:22:32 +00:00
parent f257b7a54b
commit 9b30d69710

View File

@ -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 */ /* set up flags which define what we are going to select */
show_idle = sel->idle; show_idle = sel->idle;
show_self = sel->self; show_self = sel->self == -1;
show_system = sel->system; show_system = sel->system;
show_uid = sel->uid != -1; show_uid = sel->uid != -1;
show_command = sel->command != NULL; 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++) { for (pp = pbase, i = 0; i < nproc; pp++, i++) {
if (pp->ki_stat == 0) if (pp->ki_stat == 0)
/* not in use */ /* not in use */
continue; continue;
if (!show_self && pp->ki_pid == sel->self) if (!show_self && pp->ki_pid == sel->self)
/* skip self */ /* skip self */