Allow the -H option to show threads when selecting by uid, tty,

and pid.
This commit is contained in:
Daniel Eischen 2004-02-22 17:59:31 +00:00
parent 694127f89c
commit d75c1d8381
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=126127

View File

@ -192,7 +192,7 @@ main(int argc, char *argv[])
case 'g':
break; /* no-op */
case 'H':
showthreads = 1;
showthreads = KERN_PROC_INC_THREAD;
break;
case 'h':
prtheader = ws.ws_row > 5 ? ws.ws_row : 22;
@ -349,21 +349,19 @@ main(int argc, char *argv[])
* get proc list
*/
if (nuids == 1) {
what = KERN_PROC_UID;
what = KERN_PROC_UID | showthreads;
flag = *uids;
} else if (ttydev != NODEV) {
what = KERN_PROC_TTY;
what = KERN_PROC_TTY | showthreads;
flag = ttydev;
} else if (pid != -1) {
what = KERN_PROC_PID;
what = KERN_PROC_PID | showthreads;
flag = pid;
} else if (showthreads == 1) {
what = KERN_PROC_ALL;
flag = 0;
} else {
what = KERN_PROC_PROC;
what = showthreads != 0 ? KERN_PROC_ALL : KERN_PROC_PROC;
flag = 0;
}
/*
* select procs
*/