xref: /freebsd/bin/ps/print.c (revision ffe25988bdc7a09e6d46704f391eb595d3242128)
14b88c807SRodney W. Grimes /*-
24b88c807SRodney W. Grimes  * Copyright (c) 1990, 1993, 1994
34b88c807SRodney W. Grimes  *	The Regents of the University of California.  All rights reserved.
44b88c807SRodney W. Grimes  *
54b88c807SRodney W. Grimes  * Redistribution and use in source and binary forms, with or without
64b88c807SRodney W. Grimes  * modification, are permitted provided that the following conditions
74b88c807SRodney W. Grimes  * are met:
84b88c807SRodney W. Grimes  * 1. Redistributions of source code must retain the above copyright
94b88c807SRodney W. Grimes  *    notice, this list of conditions and the following disclaimer.
104b88c807SRodney W. Grimes  * 2. Redistributions in binary form must reproduce the above copyright
114b88c807SRodney W. Grimes  *    notice, this list of conditions and the following disclaimer in the
124b88c807SRodney W. Grimes  *    documentation and/or other materials provided with the distribution.
134b88c807SRodney W. Grimes  * 3. All advertising materials mentioning features or use of this software
144b88c807SRodney W. Grimes  *    must display the following acknowledgement:
154b88c807SRodney W. Grimes  *	This product includes software developed by the University of
164b88c807SRodney W. Grimes  *	California, Berkeley and its contributors.
174b88c807SRodney W. Grimes  * 4. Neither the name of the University nor the names of its contributors
184b88c807SRodney W. Grimes  *    may be used to endorse or promote products derived from this software
194b88c807SRodney W. Grimes  *    without specific prior written permission.
204b88c807SRodney W. Grimes  *
214b88c807SRodney W. Grimes  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
224b88c807SRodney W. Grimes  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
234b88c807SRodney W. Grimes  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
244b88c807SRodney W. Grimes  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
254b88c807SRodney W. Grimes  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
264b88c807SRodney W. Grimes  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
274b88c807SRodney W. Grimes  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
284b88c807SRodney W. Grimes  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
294b88c807SRodney W. Grimes  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
304b88c807SRodney W. Grimes  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
314b88c807SRodney W. Grimes  * SUCH DAMAGE.
324b88c807SRodney W. Grimes  */
334b88c807SRodney W. Grimes 
34c9a8d1f4SPhilippe Charnier #if 0
35871e8d8cSMark Murray #ifndef lint
36c9a8d1f4SPhilippe Charnier static char sccsid[] = "@(#)print.c	8.6 (Berkeley) 4/16/94";
374b88c807SRodney W. Grimes #endif /* not lint */
38871e8d8cSMark Murray #endif
392749b141SDavid E. O'Brien #include <sys/cdefs.h>
402749b141SDavid E. O'Brien __FBSDID("$FreeBSD$");
414b88c807SRodney W. Grimes 
424b88c807SRodney W. Grimes #include <sys/param.h>
434b88c807SRodney W. Grimes #include <sys/time.h>
444b88c807SRodney W. Grimes #include <sys/resource.h>
454b88c807SRodney W. Grimes #include <sys/proc.h>
464b88c807SRodney W. Grimes #include <sys/stat.h>
474b88c807SRodney W. Grimes 
488b9b0e39SPoul-Henning Kamp #include <sys/user.h>
494b88c807SRodney W. Grimes #include <sys/sysctl.h>
504b88c807SRodney W. Grimes 
514b88c807SRodney W. Grimes #include <err.h>
52576541a9SWarner Losh #include <grp.h>
53f59105eeSAndrey A. Chernov #include <langinfo.h>
548073a93cSAndrey A. Chernov #include <locale.h>
554b88c807SRodney W. Grimes #include <math.h>
564b88c807SRodney W. Grimes #include <nlist.h>
57576541a9SWarner Losh #include <pwd.h>
584b88c807SRodney W. Grimes #include <stddef.h>
594b88c807SRodney W. Grimes #include <stdio.h>
604b88c807SRodney W. Grimes #include <stdlib.h>
614b88c807SRodney W. Grimes #include <string.h>
62871e8d8cSMark Murray #include <unistd.h>
634b88c807SRodney W. Grimes #include <vis.h>
644b88c807SRodney W. Grimes 
65f1ff35aeSMaxim Sobolev #include "lomac.h"
664b88c807SRodney W. Grimes #include "ps.h"
674b88c807SRodney W. Grimes 
68ffe25988SJuli Mallett static void printval(void *, VAR *);
69871e8d8cSMark Murray 
704b88c807SRodney W. Grimes void
7146251ddeSWarner Losh printheader(void)
724b88c807SRodney W. Grimes {
734b88c807SRodney W. Grimes 	VAR *v;
744b88c807SRodney W. Grimes 	struct varent *vent;
754b88c807SRodney W. Grimes 
764b88c807SRodney W. Grimes 	for (vent = vhead; vent; vent = vent->next) {
774b88c807SRodney W. Grimes 		v = vent->var;
784b88c807SRodney W. Grimes 		if (v->flag & LJUST) {
794b88c807SRodney W. Grimes 			if (vent->next == NULL)	/* last one */
804b88c807SRodney W. Grimes 				(void)printf("%s", v->header);
814b88c807SRodney W. Grimes 			else
824b88c807SRodney W. Grimes 				(void)printf("%-*s", v->width, v->header);
834b88c807SRodney W. Grimes 		} else
844b88c807SRodney W. Grimes 			(void)printf("%*s", v->width, v->header);
854b88c807SRodney W. Grimes 		if (vent->next != NULL)
864b88c807SRodney W. Grimes 			(void)putchar(' ');
874b88c807SRodney W. Grimes 	}
884b88c807SRodney W. Grimes 	(void)putchar('\n');
894b88c807SRodney W. Grimes }
904b88c807SRodney W. Grimes 
914b88c807SRodney W. Grimes void
9203334017SJuli Mallett arguments(KINFO *k, VARENT *ve)
9303334017SJuli Mallett {
9403334017SJuli Mallett 	VAR *v;
9503334017SJuli Mallett 	int left;
9603334017SJuli Mallett 	char *cp, *vis_args;
9703334017SJuli Mallett 
9803334017SJuli Mallett 	v = ve->var;
9903334017SJuli Mallett 
10003334017SJuli Mallett 	if ((vis_args = malloc(strlen(k->ki_args) * 4 + 1)) == NULL)
10103334017SJuli Mallett 		errx(1, "malloc failed");
10203334017SJuli Mallett 	strvis(vis_args, k->ki_args, VIS_TAB | VIS_NL | VIS_NOSLASH);
10303334017SJuli Mallett 
10403334017SJuli Mallett 	if (ve->next == NULL) {
10503334017SJuli Mallett 		/* last field */
10603334017SJuli Mallett 		if (termwidth == UNLIMITED) {
10703334017SJuli Mallett 			(void)printf("%s", vis_args);
10803334017SJuli Mallett 		} else {
10903334017SJuli Mallett 			left = termwidth - (totwidth - v->width);
11003334017SJuli Mallett 			if (left < 1) /* already wrapped, just use std width */
11103334017SJuli Mallett 				left = v->width;
11203334017SJuli Mallett 			for (cp = vis_args; --left >= 0 && *cp != '\0';)
11303334017SJuli Mallett 				(void)putchar(*cp++);
11403334017SJuli Mallett 		}
11503334017SJuli Mallett 	} else {
11603334017SJuli Mallett 		(void)printf("%-*.*s", v->width, v->width, vis_args);
11703334017SJuli Mallett 	}
11803334017SJuli Mallett 	free(vis_args);
11903334017SJuli Mallett }
12003334017SJuli Mallett 
12103334017SJuli Mallett void
12246251ddeSWarner Losh command(KINFO *k, VARENT *ve)
1234b88c807SRodney W. Grimes {
1244b88c807SRodney W. Grimes 	VAR *v;
1254b88c807SRodney W. Grimes 	int left;
1264b88c807SRodney W. Grimes 	char *cp, *vis_env, *vis_args;
1274b88c807SRodney W. Grimes 
128db91faacSPeter Wemm 	v = ve->var;
129db91faacSPeter Wemm 
130db91faacSPeter Wemm 	if (cflag) {
1313cc273e0SJohn Polstra 		if (ve->next == NULL)	/* last field, don't pad */
1321f7d2501SKirk McKusick 			(void)printf("%s", k->ki_p->ki_comm);
1333cc273e0SJohn Polstra 		else
1341f7d2501SKirk McKusick 			(void)printf("%-*s", v->width, k->ki_p->ki_comm);
135db91faacSPeter Wemm 		return;
136db91faacSPeter Wemm 	}
137db91faacSPeter Wemm 
1384b88c807SRodney W. Grimes 	if ((vis_args = malloc(strlen(k->ki_args) * 4 + 1)) == NULL)
1394fa7d788SJuli Mallett 		errx(1, "malloc failed");
1404b88c807SRodney W. Grimes 	strvis(vis_args, k->ki_args, VIS_TAB | VIS_NL | VIS_NOSLASH);
1414b88c807SRodney W. Grimes 	if (k->ki_env) {
1424b88c807SRodney W. Grimes 		if ((vis_env = malloc(strlen(k->ki_env) * 4 + 1)) == NULL)
1434fa7d788SJuli Mallett 			errx(1, "malloc failed");
1444b88c807SRodney W. Grimes 		strvis(vis_env, k->ki_env, VIS_TAB | VIS_NL | VIS_NOSLASH);
1454b88c807SRodney W. Grimes 	} else
1464b88c807SRodney W. Grimes 		vis_env = NULL;
1474b88c807SRodney W. Grimes 
1484b88c807SRodney W. Grimes 	if (ve->next == NULL) {
1494b88c807SRodney W. Grimes 		/* last field */
1504b88c807SRodney W. Grimes 		if (termwidth == UNLIMITED) {
1514b88c807SRodney W. Grimes 			if (vis_env)
1524b88c807SRodney W. Grimes 				(void)printf("%s ", vis_env);
1534b88c807SRodney W. Grimes 			(void)printf("%s", vis_args);
1544b88c807SRodney W. Grimes 		} else {
1554b88c807SRodney W. Grimes 			left = termwidth - (totwidth - v->width);
1564b88c807SRodney W. Grimes 			if (left < 1) /* already wrapped, just use std width */
1574b88c807SRodney W. Grimes 				left = v->width;
1584b88c807SRodney W. Grimes 			if ((cp = vis_env) != NULL) {
1594b88c807SRodney W. Grimes 				while (--left >= 0 && *cp)
1604b88c807SRodney W. Grimes 					(void)putchar(*cp++);
1614b88c807SRodney W. Grimes 				if (--left >= 0)
1624b88c807SRodney W. Grimes 					putchar(' ');
1634b88c807SRodney W. Grimes 			}
1644b88c807SRodney W. Grimes 			for (cp = vis_args; --left >= 0 && *cp != '\0';)
1654b88c807SRodney W. Grimes 				(void)putchar(*cp++);
1664b88c807SRodney W. Grimes 		}
1674b88c807SRodney W. Grimes 	} else
1684b88c807SRodney W. Grimes 		/* XXX env? */
1694b88c807SRodney W. Grimes 		(void)printf("%-*.*s", v->width, v->width, vis_args);
1704b88c807SRodney W. Grimes 	free(vis_args);
1714b88c807SRodney W. Grimes 	if (vis_env != NULL)
1724b88c807SRodney W. Grimes 		free(vis_env);
1734b88c807SRodney W. Grimes }
1744b88c807SRodney W. Grimes 
1754b88c807SRodney W. Grimes void
17646251ddeSWarner Losh ucomm(KINFO *k, VARENT *ve)
1774b88c807SRodney W. Grimes {
1784b88c807SRodney W. Grimes 	VAR *v;
1794b88c807SRodney W. Grimes 
1804b88c807SRodney W. Grimes 	v = ve->var;
1811f7d2501SKirk McKusick 	(void)printf("%-*s", v->width, k->ki_p->ki_comm);
1824b88c807SRodney W. Grimes }
1834b88c807SRodney W. Grimes 
1844b88c807SRodney W. Grimes void
18546251ddeSWarner Losh logname(KINFO *k, VARENT *ve)
1864b88c807SRodney W. Grimes {
1874b88c807SRodney W. Grimes 	VAR *v;
188ad863cacSSteve Price 	char *s;
1894b88c807SRodney W. Grimes 
1904b88c807SRodney W. Grimes 	v = ve->var;
1911f7d2501SKirk McKusick 	(void)printf("%-*s", v->width, (s = k->ki_p->ki_login, *s) ? s : "-");
1924b88c807SRodney W. Grimes }
1934b88c807SRodney W. Grimes 
1944b88c807SRodney W. Grimes void
19546251ddeSWarner Losh state(KINFO *k, VARENT *ve)
1964b88c807SRodney W. Grimes {
197b40ce416SJulian Elischer 	int flag, sflag, tdflags;
1984b88c807SRodney W. Grimes 	char *cp;
1994b88c807SRodney W. Grimes 	VAR *v;
2004b88c807SRodney W. Grimes 	char buf[16];
2014b88c807SRodney W. Grimes 
2024b88c807SRodney W. Grimes 	v = ve->var;
2031f7d2501SKirk McKusick 	flag = k->ki_p->ki_flag;
204564efb8fSTor Egge 	sflag = k->ki_p->ki_sflag;
205b40ce416SJulian Elischer 	tdflags = k->ki_p->ki_tdflags;	/* XXXKSE */
2064b88c807SRodney W. Grimes 	cp = buf;
2074b88c807SRodney W. Grimes 
2081f7d2501SKirk McKusick 	switch (k->ki_p->ki_stat) {
2094b88c807SRodney W. Grimes 
2104b88c807SRodney W. Grimes 	case SSTOP:
2114b88c807SRodney W. Grimes 		*cp = 'T';
2124b88c807SRodney W. Grimes 		break;
2134b88c807SRodney W. Grimes 
2144b88c807SRodney W. Grimes 	case SSLEEP:
215b40ce416SJulian Elischer 		if (tdflags & TDF_SINTR)	/* interruptable (long) */
2161f7d2501SKirk McKusick 			*cp = k->ki_p->ki_slptime >= MAXSLP ? 'I' : 'S';
2174b88c807SRodney W. Grimes 		else
2184b88c807SRodney W. Grimes 			*cp = 'D';
2194b88c807SRodney W. Grimes 		break;
2204b88c807SRodney W. Grimes 
2214b88c807SRodney W. Grimes 	case SRUN:
2224b88c807SRodney W. Grimes 	case SIDL:
2234b88c807SRodney W. Grimes 		*cp = 'R';
2244b88c807SRodney W. Grimes 		break;
2254b88c807SRodney W. Grimes 
2260384fff8SJason Evans 	case SWAIT:
2270384fff8SJason Evans 		*cp = 'W';
2280384fff8SJason Evans 		break;
2290384fff8SJason Evans 
2300384fff8SJason Evans 	case SMTX:
2310384fff8SJason Evans 		*cp = 'M';
2320384fff8SJason Evans 		break;
2330384fff8SJason Evans 
2344b88c807SRodney W. Grimes 	case SZOMB:
2354b88c807SRodney W. Grimes 		*cp = 'Z';
2364b88c807SRodney W. Grimes 		break;
2374b88c807SRodney W. Grimes 
2384b88c807SRodney W. Grimes 	default:
2394b88c807SRodney W. Grimes 		*cp = '?';
2404b88c807SRodney W. Grimes 	}
2414b88c807SRodney W. Grimes 	cp++;
242e0aa5ab7SJohn Baldwin 	if (!(sflag & PS_INMEM))
2434b88c807SRodney W. Grimes 		*cp++ = 'W';
2441f7d2501SKirk McKusick 	if (k->ki_p->ki_nice < NZERO)
2454b88c807SRodney W. Grimes 		*cp++ = '<';
2461f7d2501SKirk McKusick 	else if (k->ki_p->ki_nice > NZERO)
2474b88c807SRodney W. Grimes 		*cp++ = 'N';
2484b88c807SRodney W. Grimes 	if (flag & P_TRACED)
2494b88c807SRodney W. Grimes 		*cp++ = 'X';
2501f7d2501SKirk McKusick 	if (flag & P_WEXIT && k->ki_p->ki_stat != SZOMB)
2514b88c807SRodney W. Grimes 		*cp++ = 'E';
2524b88c807SRodney W. Grimes 	if (flag & P_PPWAIT)
2534b88c807SRodney W. Grimes 		*cp++ = 'V';
2541f7d2501SKirk McKusick 	if ((flag & P_SYSTEM) || k->ki_p->ki_lock > 0)
2554b88c807SRodney W. Grimes 		*cp++ = 'L';
2561f7d2501SKirk McKusick 	if (k->ki_p->ki_kiflag & KI_SLEADER)
2574b88c807SRodney W. Grimes 		*cp++ = 's';
2581f7d2501SKirk McKusick 	if ((flag & P_CONTROLT) && k->ki_p->ki_pgid == k->ki_p->ki_tpgid)
2594b88c807SRodney W. Grimes 		*cp++ = '+';
26075c13541SPoul-Henning Kamp 	if (flag & P_JAILED)
26175c13541SPoul-Henning Kamp 		*cp++ = 'J';
2624b88c807SRodney W. Grimes 	*cp = '\0';
2634b88c807SRodney W. Grimes 	(void)printf("%-*s", v->width, buf);
2644b88c807SRodney W. Grimes }
2654b88c807SRodney W. Grimes 
2664b88c807SRodney W. Grimes void
26746251ddeSWarner Losh pri(KINFO *k, VARENT *ve)
2684b88c807SRodney W. Grimes {
2694b88c807SRodney W. Grimes 	VAR *v;
2704b88c807SRodney W. Grimes 
2714b88c807SRodney W. Grimes 	v = ve->var;
2724c85452bSJake Burkholder 	(void)printf("%*d", v->width, k->ki_p->ki_pri.pri_level - PZERO);
2734b88c807SRodney W. Grimes }
2744b88c807SRodney W. Grimes 
2754b88c807SRodney W. Grimes void
27646251ddeSWarner Losh uname(KINFO *k, VARENT *ve)
2774b88c807SRodney W. Grimes {
2784b88c807SRodney W. Grimes 	VAR *v;
2794b88c807SRodney W. Grimes 
2804b88c807SRodney W. Grimes 	v = ve->var;
281e8eef4bbSJuli Mallett 	(void)printf("%-*s", v->width, user_from_uid(k->ki_p->ki_uid, 0));
2824b88c807SRodney W. Grimes }
2834b88c807SRodney W. Grimes 
2846a2d726bSJordan K. Hubbard int
28546251ddeSWarner Losh s_uname(KINFO *k)
2866a2d726bSJordan K. Hubbard {
2871f7d2501SKirk McKusick 	    return (strlen(user_from_uid(k->ki_p->ki_uid, 0)));
2886a2d726bSJordan K. Hubbard }
2896a2d726bSJordan K. Hubbard 
2904b88c807SRodney W. Grimes void
291e8eef4bbSJuli Mallett rgroupname(KINFO *k, VARENT *ve)
292e8eef4bbSJuli Mallett {
293e8eef4bbSJuli Mallett 	VAR *v;
294e8eef4bbSJuli Mallett 
295e8eef4bbSJuli Mallett 	v = ve->var;
296e8eef4bbSJuli Mallett 	(void)printf("%-*s", v->width, group_from_gid(k->ki_p->ki_rgid, 0));
297e8eef4bbSJuli Mallett }
298e8eef4bbSJuli Mallett 
299e8eef4bbSJuli Mallett int
300e8eef4bbSJuli Mallett s_rgroupname(KINFO *k)
301e8eef4bbSJuli Mallett {
302e8eef4bbSJuli Mallett 	return (strlen(group_from_gid(k->ki_p->ki_rgid, 0)));
303e8eef4bbSJuli Mallett }
304e8eef4bbSJuli Mallett 
305e8eef4bbSJuli Mallett void
30646251ddeSWarner Losh runame(KINFO *k, VARENT *ve)
3074b88c807SRodney W. Grimes {
3084b88c807SRodney W. Grimes 	VAR *v;
3094b88c807SRodney W. Grimes 
3104b88c807SRodney W. Grimes 	v = ve->var;
311e8eef4bbSJuli Mallett 	(void)printf("%-*s", v->width, user_from_uid(k->ki_p->ki_ruid, 0));
3124b88c807SRodney W. Grimes }
3134b88c807SRodney W. Grimes 
3146a2d726bSJordan K. Hubbard int
31546251ddeSWarner Losh s_runame(KINFO *k)
3166a2d726bSJordan K. Hubbard {
3171f7d2501SKirk McKusick 	    return (strlen(user_from_uid(k->ki_p->ki_ruid, 0)));
3186a2d726bSJordan K. Hubbard }
3196a2d726bSJordan K. Hubbard 
3204b88c807SRodney W. Grimes void
32146251ddeSWarner Losh tdev(KINFO *k, VARENT *ve)
3224b88c807SRodney W. Grimes {
3234b88c807SRodney W. Grimes 	VAR *v;
3244b88c807SRodney W. Grimes 	dev_t dev;
3254b88c807SRodney W. Grimes 	char buff[16];
3264b88c807SRodney W. Grimes 
3274b88c807SRodney W. Grimes 	v = ve->var;
3281f7d2501SKirk McKusick 	dev = k->ki_p->ki_tdev;
3294b88c807SRodney W. Grimes 	if (dev == NODEV)
3304b88c807SRodney W. Grimes 		(void)printf("%*s", v->width, "??");
3314b88c807SRodney W. Grimes 	else {
3324b88c807SRodney W. Grimes 		(void)snprintf(buff, sizeof(buff),
3334b88c807SRodney W. Grimes 		    "%d/%d", major(dev), minor(dev));
3344b88c807SRodney W. Grimes 		(void)printf("%*s", v->width, buff);
3354b88c807SRodney W. Grimes 	}
3364b88c807SRodney W. Grimes }
3374b88c807SRodney W. Grimes 
3384b88c807SRodney W. Grimes void
33946251ddeSWarner Losh tname(KINFO *k, VARENT *ve)
3404b88c807SRodney W. Grimes {
3414b88c807SRodney W. Grimes 	VAR *v;
3424b88c807SRodney W. Grimes 	dev_t dev;
3434b88c807SRodney W. Grimes 	char *ttname;
3444b88c807SRodney W. Grimes 
3454b88c807SRodney W. Grimes 	v = ve->var;
3461f7d2501SKirk McKusick 	dev = k->ki_p->ki_tdev;
3474b88c807SRodney W. Grimes 	if (dev == NODEV || (ttname = devname(dev, S_IFCHR)) == NULL)
348c55931c7SPeter Wemm 		(void)printf("%*s ", v->width-1, "??");
3494b88c807SRodney W. Grimes 	else {
350efc18e2cSAndrey A. Chernov 		if (strncmp(ttname, "tty", 3) == 0 ||
351efc18e2cSAndrey A. Chernov 		    strncmp(ttname, "cua", 3) == 0)
3524b88c807SRodney W. Grimes 			ttname += 3;
353c55931c7SPeter Wemm 		(void)printf("%*.*s%c", v->width-1, v->width-1, ttname,
3541f7d2501SKirk McKusick 			k->ki_p->ki_kiflag & KI_CTTY ? ' ' : '-');
3554b88c807SRodney W. Grimes 	}
3564b88c807SRodney W. Grimes }
3574b88c807SRodney W. Grimes 
3584b88c807SRodney W. Grimes void
35946251ddeSWarner Losh longtname(KINFO *k, VARENT *ve)
3604b88c807SRodney W. Grimes {
3614b88c807SRodney W. Grimes 	VAR *v;
3624b88c807SRodney W. Grimes 	dev_t dev;
3634b88c807SRodney W. Grimes 	char *ttname;
3644b88c807SRodney W. Grimes 
3654b88c807SRodney W. Grimes 	v = ve->var;
3661f7d2501SKirk McKusick 	dev = k->ki_p->ki_tdev;
3674b88c807SRodney W. Grimes 	if (dev == NODEV || (ttname = devname(dev, S_IFCHR)) == NULL)
3684b88c807SRodney W. Grimes 		(void)printf("%-*s", v->width, "??");
3694b88c807SRodney W. Grimes 	else
3704b88c807SRodney W. Grimes 		(void)printf("%-*s", v->width, ttname);
3714b88c807SRodney W. Grimes }
3724b88c807SRodney W. Grimes 
3734b88c807SRodney W. Grimes void
37446251ddeSWarner Losh started(KINFO *k, VARENT *ve)
3754b88c807SRodney W. Grimes {
3764b88c807SRodney W. Grimes 	VAR *v;
377f8ec5fe2SBruce Evans 	time_t then;
3784b88c807SRodney W. Grimes 	struct tm *tp;
3794b88c807SRodney W. Grimes 	char buf[100];
380f59105eeSAndrey A. Chernov 	static int  use_ampm = -1;
3814b88c807SRodney W. Grimes 
3824b88c807SRodney W. Grimes 	v = ve->var;
3831f7d2501SKirk McKusick 	if (!k->ki_valid) {
3844b88c807SRodney W. Grimes 		(void)printf("%-*s", v->width, "-");
3854b88c807SRodney W. Grimes 		return;
3864b88c807SRodney W. Grimes 	}
3874b88c807SRodney W. Grimes 
388f59105eeSAndrey A. Chernov 	if (use_ampm < 0)
389f59105eeSAndrey A. Chernov 		use_ampm = (*nl_langinfo(T_FMT_AMPM) != '\0');
390f59105eeSAndrey A. Chernov 
3911f7d2501SKirk McKusick 	then = k->ki_p->ki_start.tv_sec;
392f8ec5fe2SBruce Evans 	tp = localtime(&then);
3931f7d2501SKirk McKusick 	if (now - k->ki_p->ki_start.tv_sec < 24 * 3600) {
39408017519SAndrey A. Chernov 		(void)strftime(buf, sizeof(buf) - 1,
39508017519SAndrey A. Chernov 		use_ampm ? "%l:%M%p" : "%k:%M  ", tp);
3961f7d2501SKirk McKusick 	} else if (now - k->ki_p->ki_start.tv_sec < 7 * 86400) {
39708017519SAndrey A. Chernov 		(void)strftime(buf, sizeof(buf) - 1,
39808017519SAndrey A. Chernov 		use_ampm ? "%a%I%p" : "%a%H  ", tp);
3994b88c807SRodney W. Grimes 	} else
4004b88c807SRodney W. Grimes 		(void)strftime(buf, sizeof(buf) - 1, "%e%b%y", tp);
4014b88c807SRodney W. Grimes 	(void)printf("%-*s", v->width, buf);
4024b88c807SRodney W. Grimes }
4034b88c807SRodney W. Grimes 
4044b88c807SRodney W. Grimes void
40546251ddeSWarner Losh lstarted(KINFO *k, VARENT *ve)
4064b88c807SRodney W. Grimes {
4074b88c807SRodney W. Grimes 	VAR *v;
408f8ec5fe2SBruce Evans 	time_t then;
4094b88c807SRodney W. Grimes 	char buf[100];
4104b88c807SRodney W. Grimes 
4114b88c807SRodney W. Grimes 	v = ve->var;
4121f7d2501SKirk McKusick 	if (!k->ki_valid) {
4134b88c807SRodney W. Grimes 		(void)printf("%-*s", v->width, "-");
4144b88c807SRodney W. Grimes 		return;
4154b88c807SRodney W. Grimes 	}
4161f7d2501SKirk McKusick 	then = k->ki_p->ki_start.tv_sec;
417f8ec5fe2SBruce Evans 	(void)strftime(buf, sizeof(buf) -1, "%c", localtime(&then));
4184b88c807SRodney W. Grimes 	(void)printf("%-*s", v->width, buf);
4194b88c807SRodney W. Grimes }
4204b88c807SRodney W. Grimes 
4214b88c807SRodney W. Grimes void
42246251ddeSWarner Losh mtxname(KINFO *k, VARENT *ve)
423fd5f30bfSJohn Baldwin {
424fd5f30bfSJohn Baldwin 	VAR *v;
425fd5f30bfSJohn Baldwin 
426fd5f30bfSJohn Baldwin 	v = ve->var;
4271f7d2501SKirk McKusick 	if (k->ki_p->ki_kiflag & KI_MTXBLOCK) {
4281f7d2501SKirk McKusick 		if (k->ki_p->ki_mtxname[0] != 0)
429fd5f30bfSJohn Baldwin 			(void)printf("%-*.*s", v->width, v->width,
4301f7d2501SKirk McKusick 				      k->ki_p->ki_mtxname);
431fd5f30bfSJohn Baldwin 		else
432fd5f30bfSJohn Baldwin 			(void)printf("%-*s", v->width, "???");
433fd5f30bfSJohn Baldwin 	} else
434fd5f30bfSJohn Baldwin 		(void)printf("%-*s", v->width, "-");
435fd5f30bfSJohn Baldwin }
436fd5f30bfSJohn Baldwin 
437fd5f30bfSJohn Baldwin void
43846251ddeSWarner Losh wchan(KINFO *k, VARENT *ve)
4394b88c807SRodney W. Grimes {
4404b88c807SRodney W. Grimes 	VAR *v;
4414b88c807SRodney W. Grimes 
4424b88c807SRodney W. Grimes 	v = ve->var;
4431f7d2501SKirk McKusick 	if (k->ki_p->ki_wchan) {
4441f7d2501SKirk McKusick 		if (k->ki_p->ki_wmesg[0] != 0)
4454b88c807SRodney W. Grimes 			(void)printf("%-*.*s", v->width, v->width,
4461f7d2501SKirk McKusick 				      k->ki_p->ki_wmesg);
4474b88c807SRodney W. Grimes 		else
4483929d518SDoug Rabson 			(void)printf("%-*lx", v->width,
4497d1192a7SPeter Wemm 			    (long)k->ki_p->ki_wchan);
450d9a5f890SMatthew Dillon 	} else {
451d9a5f890SMatthew Dillon 		(void)printf("%-*s", v->width, "-");
452d9a5f890SMatthew Dillon 	}
453d9a5f890SMatthew Dillon }
454d9a5f890SMatthew Dillon 
455d9a5f890SMatthew Dillon void
456d9a5f890SMatthew Dillon mwchan(KINFO *k, VARENT *ve)
457d9a5f890SMatthew Dillon {
458d9a5f890SMatthew Dillon 	VAR *v;
459d9a5f890SMatthew Dillon 
460d9a5f890SMatthew Dillon 	v = ve->var;
461d9a5f890SMatthew Dillon 	if (k->ki_p->ki_wchan) {
462d9a5f890SMatthew Dillon 		if (k->ki_p->ki_wmesg[0] != 0)
463d9a5f890SMatthew Dillon 			(void)printf("%-*.*s", v->width, v->width,
464d9a5f890SMatthew Dillon 				      k->ki_p->ki_wmesg);
465d9a5f890SMatthew Dillon 		else
466d9a5f890SMatthew Dillon 			(void)printf("%-*lx", v->width,
467d9a5f890SMatthew Dillon 			    (long)k->ki_p->ki_wchan);
468ebc1fff9SMatthew Dillon 	} else if (k->ki_p->ki_kiflag & KI_MTXBLOCK) {
469d9a5f890SMatthew Dillon 		if (k->ki_p->ki_mtxname[0]) {
470d9a5f890SMatthew Dillon 			(void)printf("%-*.*s", v->width, v->width,
471d9a5f890SMatthew Dillon 			    k->ki_p->ki_mtxname);
472d9a5f890SMatthew Dillon 		} else {
473d9a5f890SMatthew Dillon 			(void)printf("%-*s", v->width, "???");
474d9a5f890SMatthew Dillon 		}
475ebc1fff9SMatthew Dillon 	} else {
4764b88c807SRodney W. Grimes 		(void)printf("%-*s", v->width, "-");
4774b88c807SRodney W. Grimes 	}
478ebc1fff9SMatthew Dillon }
4794b88c807SRodney W. Grimes 
4804a40c5e7SPeter Wemm #ifndef pgtok
4813a91de06SPoul-Henning Kamp #define pgtok(a)        (((a)*getpagesize())/1024)
4824a40c5e7SPeter Wemm #endif
4834b88c807SRodney W. Grimes 
4844b88c807SRodney W. Grimes void
48546251ddeSWarner Losh vsize(KINFO *k, VARENT *ve)
4864b88c807SRodney W. Grimes {
4874b88c807SRodney W. Grimes 	VAR *v;
4884b88c807SRodney W. Grimes 
4894b88c807SRodney W. Grimes 	v = ve->var;
4904b88c807SRodney W. Grimes 	(void)printf("%*d", v->width,
4911f7d2501SKirk McKusick 	    (k->ki_p->ki_size/1024));
4924b88c807SRodney W. Grimes }
4934b88c807SRodney W. Grimes 
4944b88c807SRodney W. Grimes void
49546251ddeSWarner Losh cputime(KINFO *k, VARENT *ve)
4964b88c807SRodney W. Grimes {
4974b88c807SRodney W. Grimes 	VAR *v;
4984b88c807SRodney W. Grimes 	long secs;
4994b88c807SRodney W. Grimes 	long psecs;	/* "parts" of a second. first micro, then centi */
5004b88c807SRodney W. Grimes 	char obuff[128];
5018073a93cSAndrey A. Chernov 	static char decimal_point = 0;
5024b88c807SRodney W. Grimes 
5038073a93cSAndrey A. Chernov 	if (!decimal_point)
5048073a93cSAndrey A. Chernov 		decimal_point = localeconv()->decimal_point[0];
5054b88c807SRodney W. Grimes 	v = ve->var;
5061f7d2501SKirk McKusick 	if (k->ki_p->ki_stat == SZOMB || !k->ki_valid) {
5075832a752SBruce Evans 		secs = 0;
5085832a752SBruce Evans 		psecs = 0;
5094b88c807SRodney W. Grimes 	} else {
5104b88c807SRodney W. Grimes 		/*
5114b88c807SRodney W. Grimes 		 * This counts time spent handling interrupts.  We could
5124b88c807SRodney W. Grimes 		 * fix this, but it is not 100% trivial (and interrupt
5134b88c807SRodney W. Grimes 		 * time fractions only work on the sparc anyway).	XXX
5144b88c807SRodney W. Grimes 		 */
5151f7d2501SKirk McKusick 		secs = k->ki_p->ki_runtime / 1000000;
5161f7d2501SKirk McKusick 		psecs = k->ki_p->ki_runtime % 1000000;
5174b88c807SRodney W. Grimes 		if (sumrusage) {
5181f7d2501SKirk McKusick 			secs += k->ki_p->ki_childtime.tv_sec;
5191f7d2501SKirk McKusick 			psecs += k->ki_p->ki_childtime.tv_usec;
5204b88c807SRodney W. Grimes 		}
5214b88c807SRodney W. Grimes 		/*
5224b88c807SRodney W. Grimes 		 * round and scale to 100's
5234b88c807SRodney W. Grimes 		 */
5245832a752SBruce Evans 		psecs = (psecs + 5000) / 10000;
5255832a752SBruce Evans 		secs += psecs / 100;
5265832a752SBruce Evans 		psecs = psecs % 100;
5275832a752SBruce Evans 	}
5284b88c807SRodney W. Grimes 	(void)snprintf(obuff, sizeof(obuff),
5298073a93cSAndrey A. Chernov 	    "%3ld:%02ld%c%02ld", secs/60, secs%60, decimal_point, psecs);
5304b88c807SRodney W. Grimes 	(void)printf("%*s", v->width, obuff);
5314b88c807SRodney W. Grimes }
5324b88c807SRodney W. Grimes 
53376e1a9feSJuli Mallett void
53476e1a9feSJuli Mallett elapsed(KINFO *k, VARENT *ve)
53576e1a9feSJuli Mallett {
53676e1a9feSJuli Mallett 	VAR *v;
53776e1a9feSJuli Mallett 	time_t secs;
53876e1a9feSJuli Mallett 	char obuff[128];
53976e1a9feSJuli Mallett 
54076e1a9feSJuli Mallett 	v = ve->var;
54176e1a9feSJuli Mallett 
54276e1a9feSJuli Mallett 	secs = now - k->ki_p->ki_start.tv_sec;
543c3f1b5a9SJuli Mallett 	(void)snprintf(obuff, sizeof(obuff), "%3ld:%02ld", (long)secs/60,
544c3f1b5a9SJuli Mallett 	    (long)secs%60);
54576e1a9feSJuli Mallett 	(void)printf("%*s", v->width, obuff);
54676e1a9feSJuli Mallett }
54776e1a9feSJuli Mallett 
5484b88c807SRodney W. Grimes double
549871e8d8cSMark Murray getpcpu(const KINFO *k)
5504b88c807SRodney W. Grimes {
5514b88c807SRodney W. Grimes 	static int failure;
5524b88c807SRodney W. Grimes 
5534b88c807SRodney W. Grimes 	if (!nlistread)
5544b88c807SRodney W. Grimes 		failure = donlist();
5554b88c807SRodney W. Grimes 	if (failure)
5564b88c807SRodney W. Grimes 		return (0.0);
5574b88c807SRodney W. Grimes 
5584b88c807SRodney W. Grimes #define	fxtofl(fixpt)	((double)(fixpt) / fscale)
5594b88c807SRodney W. Grimes 
5604b88c807SRodney W. Grimes 	/* XXX - I don't like this */
561e0aa5ab7SJohn Baldwin 	if (k->ki_p->ki_swtime == 0 || (k->ki_p->ki_sflag & PS_INMEM) == 0)
5624b88c807SRodney W. Grimes 		return (0.0);
5634b88c807SRodney W. Grimes 	if (rawcpu)
5641f7d2501SKirk McKusick 		return (100.0 * fxtofl(k->ki_p->ki_pctcpu));
5651f7d2501SKirk McKusick 	return (100.0 * fxtofl(k->ki_p->ki_pctcpu) /
5661f7d2501SKirk McKusick 		(1.0 - exp(k->ki_p->ki_swtime * log(fxtofl(ccpu)))));
5674b88c807SRodney W. Grimes }
5684b88c807SRodney W. Grimes 
5694b88c807SRodney W. Grimes void
57046251ddeSWarner Losh pcpu(KINFO *k, VARENT *ve)
5714b88c807SRodney W. Grimes {
5724b88c807SRodney W. Grimes 	VAR *v;
5734b88c807SRodney W. Grimes 
5744b88c807SRodney W. Grimes 	v = ve->var;
5754b88c807SRodney W. Grimes 	(void)printf("%*.1f", v->width, getpcpu(k));
5764b88c807SRodney W. Grimes }
5774b88c807SRodney W. Grimes 
578871e8d8cSMark Murray static double
57946251ddeSWarner Losh getpmem(KINFO *k)
5804b88c807SRodney W. Grimes {
5814b88c807SRodney W. Grimes 	static int failure;
5824b88c807SRodney W. Grimes 	double fracmem;
5834b88c807SRodney W. Grimes 
5844b88c807SRodney W. Grimes 	if (!nlistread)
5854b88c807SRodney W. Grimes 		failure = donlist();
5864b88c807SRodney W. Grimes 	if (failure)
5874b88c807SRodney W. Grimes 		return (0.0);
5884b88c807SRodney W. Grimes 
589e0aa5ab7SJohn Baldwin 	if ((k->ki_p->ki_sflag & PS_INMEM) == 0)
5904b88c807SRodney W. Grimes 		return (0.0);
5914b88c807SRodney W. Grimes 	/* XXX want pmap ptpages, segtab, etc. (per architecture) */
5924b88c807SRodney W. Grimes 	/* XXX don't have info about shared */
59385012e7cSPeter Wemm 	fracmem = ((float)k->ki_p->ki_rssize)/mempages;
5944b88c807SRodney W. Grimes 	return (100.0 * fracmem);
5954b88c807SRodney W. Grimes }
5964b88c807SRodney W. Grimes 
5974b88c807SRodney W. Grimes void
59846251ddeSWarner Losh pmem(KINFO *k, VARENT *ve)
5994b88c807SRodney W. Grimes {
6004b88c807SRodney W. Grimes 	VAR *v;
6014b88c807SRodney W. Grimes 
6024b88c807SRodney W. Grimes 	v = ve->var;
6034b88c807SRodney W. Grimes 	(void)printf("%*.1f", v->width, getpmem(k));
6044b88c807SRodney W. Grimes }
6054b88c807SRodney W. Grimes 
6064b88c807SRodney W. Grimes void
60746251ddeSWarner Losh pagein(KINFO *k, VARENT *ve)
6084b88c807SRodney W. Grimes {
6094b88c807SRodney W. Grimes 	VAR *v;
6104b88c807SRodney W. Grimes 
6114b88c807SRodney W. Grimes 	v = ve->var;
6120fd510b7SJoerg Wunsch 	(void)printf("%*ld", v->width,
6131f7d2501SKirk McKusick 	    k->ki_valid ? k->ki_p->ki_rusage.ru_majflt : 0);
6144b88c807SRodney W. Grimes }
6154b88c807SRodney W. Grimes 
616871e8d8cSMark Murray /* ARGSUSED */
6174b88c807SRodney W. Grimes void
618871e8d8cSMark Murray maxrss(KINFO *k __unused, VARENT *ve)
6194b88c807SRodney W. Grimes {
6204b88c807SRodney W. Grimes 	VAR *v;
6214b88c807SRodney W. Grimes 
6224b88c807SRodney W. Grimes 	v = ve->var;
623940cca66SPeter Wemm 	/* XXX not yet */
6244b88c807SRodney W. Grimes 	(void)printf("%*s", v->width, "-");
6254b88c807SRodney W. Grimes }
6264b88c807SRodney W. Grimes 
6274b88c807SRodney W. Grimes void
62846251ddeSWarner Losh tsize(KINFO *k, VARENT *ve)
6294b88c807SRodney W. Grimes {
6304b88c807SRodney W. Grimes 	VAR *v;
6314b88c807SRodney W. Grimes 
6324b88c807SRodney W. Grimes 	v = ve->var;
6331f7d2501SKirk McKusick 	(void)printf("%*ld", v->width, (long)pgtok(k->ki_p->ki_tsize));
6344b88c807SRodney W. Grimes }
6354b88c807SRodney W. Grimes 
636ad863cacSSteve Price void
63746251ddeSWarner Losh priorityr(KINFO *k, VARENT *ve)
638ad863cacSSteve Price {
639ad863cacSSteve Price 	VAR *v;
640871e8d8cSMark Murray 	struct priority *lpri;
641ad863cacSSteve Price 	char str[8];
6424c85452bSJake Burkholder 	unsigned class, level;
643ad863cacSSteve Price 
644ad863cacSSteve Price 	v = ve->var;
645871e8d8cSMark Murray 	lpri = (struct priority *) ((char *)k + v->off);
646871e8d8cSMark Murray 	class = lpri->pri_class;
647871e8d8cSMark Murray 	level = lpri->pri_level;
6484c85452bSJake Burkholder 	switch (class) {
6494c85452bSJake Burkholder 	case PRI_REALTIME:
6504c85452bSJake Burkholder 		snprintf(str, sizeof(str), "real:%u", level);
651ad863cacSSteve Price 		break;
6524c85452bSJake Burkholder 	case PRI_TIMESHARE:
653ad863cacSSteve Price 		strncpy(str, "normal", sizeof(str));
654ad863cacSSteve Price 		break;
6554c85452bSJake Burkholder 	case PRI_IDLE:
6564c85452bSJake Burkholder 		snprintf(str, sizeof(str), "idle:%u", level);
657ad863cacSSteve Price 		break;
658ad863cacSSteve Price 	default:
6594c85452bSJake Burkholder 		snprintf(str, sizeof(str), "%u:%u", class, level);
660ad863cacSSteve Price 		break;
661ad863cacSSteve Price 	}
662ad863cacSSteve Price 	str[sizeof(str) - 1] = '\0';
663ad863cacSSteve Price 	(void)printf("%*s", v->width, str);
664ad863cacSSteve Price }
665ad863cacSSteve Price 
6664b88c807SRodney W. Grimes /*
6674b88c807SRodney W. Grimes  * Generic output routines.  Print fields from various prototype
6684b88c807SRodney W. Grimes  * structures.
6694b88c807SRodney W. Grimes  */
6704b88c807SRodney W. Grimes static void
671ffe25988SJuli Mallett printval(void *bp, VAR *v)
6724b88c807SRodney W. Grimes {
6734b88c807SRodney W. Grimes 	static char ofmt[32] = "%";
674fdbec398SJuli Mallett 	const char *fcp;
675fdbec398SJuli Mallett 	char *cp;
6764b88c807SRodney W. Grimes 
6774b88c807SRodney W. Grimes 	cp = ofmt + 1;
6784b88c807SRodney W. Grimes 	fcp = v->fmt;
6794b88c807SRodney W. Grimes 	if (v->flag & LJUST)
6804b88c807SRodney W. Grimes 		*cp++ = '-';
6814b88c807SRodney W. Grimes 	*cp++ = '*';
6820fd510b7SJoerg Wunsch 	while ((*cp++ = *fcp++));
6834b88c807SRodney W. Grimes 
6844b88c807SRodney W. Grimes 	switch (v->type) {
6854b88c807SRodney W. Grimes 	case CHAR:
6864b88c807SRodney W. Grimes 		(void)printf(ofmt, v->width, *(char *)bp);
6874b88c807SRodney W. Grimes 		break;
6884b88c807SRodney W. Grimes 	case UCHAR:
6894b88c807SRodney W. Grimes 		(void)printf(ofmt, v->width, *(u_char *)bp);
6904b88c807SRodney W. Grimes 		break;
6914b88c807SRodney W. Grimes 	case SHORT:
6924b88c807SRodney W. Grimes 		(void)printf(ofmt, v->width, *(short *)bp);
6934b88c807SRodney W. Grimes 		break;
6944b88c807SRodney W. Grimes 	case USHORT:
6954b88c807SRodney W. Grimes 		(void)printf(ofmt, v->width, *(u_short *)bp);
6964b88c807SRodney W. Grimes 		break;
6973929d518SDoug Rabson 	case INT:
6983929d518SDoug Rabson 		(void)printf(ofmt, v->width, *(int *)bp);
6993929d518SDoug Rabson 		break;
7003929d518SDoug Rabson 	case UINT:
7013929d518SDoug Rabson 		(void)printf(ofmt, v->width, *(u_int *)bp);
7023929d518SDoug Rabson 		break;
7034b88c807SRodney W. Grimes 	case LONG:
7044b88c807SRodney W. Grimes 		(void)printf(ofmt, v->width, *(long *)bp);
7054b88c807SRodney W. Grimes 		break;
7064b88c807SRodney W. Grimes 	case ULONG:
7074b88c807SRodney W. Grimes 		(void)printf(ofmt, v->width, *(u_long *)bp);
7084b88c807SRodney W. Grimes 		break;
7094b88c807SRodney W. Grimes 	case KPTR:
7107d1192a7SPeter Wemm 		(void)printf(ofmt, v->width, *(u_long *)bp);
7114b88c807SRodney W. Grimes 		break;
7124b88c807SRodney W. Grimes 	default:
7134b88c807SRodney W. Grimes 		errx(1, "unknown type %d", v->type);
7144b88c807SRodney W. Grimes 	}
7154b88c807SRodney W. Grimes }
7164b88c807SRodney W. Grimes 
7174b88c807SRodney W. Grimes void
71846251ddeSWarner Losh kvar(KINFO *k, VARENT *ve)
7194b88c807SRodney W. Grimes {
7204b88c807SRodney W. Grimes 	VAR *v;
7214b88c807SRodney W. Grimes 
7224b88c807SRodney W. Grimes 	v = ve->var;
7231f7d2501SKirk McKusick 	printval((char *)((char *)k->ki_p + v->off), v);
7244b88c807SRodney W. Grimes }
7254b88c807SRodney W. Grimes 
7264b88c807SRodney W. Grimes void
72746251ddeSWarner Losh rvar(KINFO *k, VARENT *ve)
7284b88c807SRodney W. Grimes {
7294b88c807SRodney W. Grimes 	VAR *v;
7304b88c807SRodney W. Grimes 
7314b88c807SRodney W. Grimes 	v = ve->var;
7321f7d2501SKirk McKusick 	if (k->ki_valid)
7331f7d2501SKirk McKusick 		printval((char *)((char *)(&k->ki_p->ki_rusage) + v->off), v);
7344b88c807SRodney W. Grimes 	else
7354b88c807SRodney W. Grimes 		(void)printf("%*s", v->width, "-");
7364b88c807SRodney W. Grimes }
7377304f61fSBrian Feldman 
7387304f61fSBrian Feldman void
73946251ddeSWarner Losh lattr(KINFO *k, VARENT *ve)
7407304f61fSBrian Feldman {
7417304f61fSBrian Feldman 	VAR *v;
7427304f61fSBrian Feldman 
7437304f61fSBrian Feldman 	v = ve->var;
744e8eef4bbSJuli Mallett 	(void)printf("%-*d", v->width, get_lattr(k->ki_p->ki_pid));
7457304f61fSBrian Feldman }
746