diff options
author | phk <phk@FreeBSD.org> | 1997-10-10 18:19:48 +0000 |
---|---|---|
committer | phk <phk@FreeBSD.org> | 1997-10-10 18:19:48 +0000 |
commit | f1a5d63a7bec886a7d5f6de806436c94bbe85ef5 (patch) | |
tree | 9195d72b6ea35c2259d0e162276be5698797b269 /usr.bin/vmstat | |
parent | a8f67509a68e961b8237e2b5c085f263b7aa364f (diff) | |
download | FreeBSD-src-f1a5d63a7bec886a7d5f6de806436c94bbe85ef5.zip FreeBSD-src-f1a5d63a7bec886a7d5f6de806436c94bbe85ef5.tar.gz |
struct kmemstats was renamed.
Diffstat (limited to 'usr.bin/vmstat')
-rw-r--r-- | usr.bin/vmstat/vmstat.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/vmstat/vmstat.c b/usr.bin/vmstat/vmstat.c index c3e3c47..8e587e5 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.19 1997/10/06 18:52:16 dima Exp $"; + "$Id: vmstat.c,v 1.20 1997/10/10 14:08:07 phk Exp $"; #endif /* not lint */ #include <sys/param.h> @@ -698,12 +698,12 @@ void domem() { register struct kmembuckets *kp; - register struct kmemstats *ks; + register struct malloc_type *ks; register int i, j; int len, size, first, nkms; long totuse = 0, totfree = 0, totreq = 0; char *name; - struct kmemstats kmemstats[200],*kmsp; + struct malloc_type kmemstats[200],*kmsp; char *kmemnames[200]; char buf[1024]; struct kmembuckets buckets[MINBUCKET + 16]; |