diff options
| author | James Raynard <jraynard@FreeBSD.org> | 1998-03-16 23:55:08 +0000 |
|---|---|---|
| committer | James Raynard <jraynard@FreeBSD.org> | 1998-03-16 23:55:08 +0000 |
| commit | 190a9150906898bd801bdc6bd1f9ab51fc0f6a2e (patch) | |
| tree | ca0e8a401d088c6f3d122894ec033bb0a44ef03e /usr.bin | |
| parent | 90638faa1f3b468201443f328ca9efb13cedb893 (diff) | |
Notes
Diffstat (limited to 'usr.bin')
| -rw-r--r-- | usr.bin/vmstat/vmstat.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/usr.bin/vmstat/vmstat.c b/usr.bin/vmstat/vmstat.c index a1741650f19c..2c462abc1e5f 100644 --- a/usr.bin/vmstat/vmstat.c +++ b/usr.bin/vmstat/vmstat.c @@ -42,7 +42,7 @@ static const char copyright[] = static char sccsid[] = "@(#)vmstat.c 8.1 (Berkeley) 6/6/93"; #endif static const char rcsid[] = - "$Id: vmstat.c,v 1.15.2.2 1997/08/29 05:30:11 imp Exp $"; + "$Id: vmstat.c,v 1.15.2.3 1997/10/07 05:39:54 dima Exp $"; #endif /* not lint */ #include <sys/param.h> @@ -426,7 +426,7 @@ dovmstat(interval, reps) total.t_rq - 1, total.t_dw + total.t_pw, total.t_sw); #define pgtok(a) ((a) * sum.v_page_size >> 10) #define rate(x) (((x) + halfuptime) / uptime) /* round */ - (void)printf("%6ld%6ld ", + (void)printf("%8ld%6ld ", (long)pgtok(total.t_avm), (long)pgtok(total.t_free)); (void)printf("%4lu ", rate(sum.v_vm_faults - osum.v_vm_faults)); (void)printf("%3lu ", @@ -466,13 +466,13 @@ printhdr() { register int i; - (void)printf(" procs memory page%*s", 20, ""); + (void)printf(" procs memory page%*s", 20, ""); if (ndrives > 1) (void)printf("disks %*s faults cpu\n", ndrives * 3 - 6, ""); else (void)printf("%*s faults cpu\n", ndrives * 3, ""); - (void)printf(" r b w avm fre flt re pi po fr sr "); + (void)printf(" r b w avm fre flt re pi po fr sr "); for (i = 0; i < dk_ndrive; i++) if (dr_select[i]) (void)printf("%c%c ", dr_name[i][0], |
