From 82c4eab0a713741d6c5f587f04e32f64e0ab6911 Mon Sep 17 00:00:00 2001 From: David Greenman Date: Sun, 9 Oct 1994 07:37:18 +0000 Subject: [PATCH] #if 0'd out the meat of the swap code until I get a chance to rewrite it. --- usr.bin/systat/swap.c | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/usr.bin/systat/swap.c b/usr.bin/systat/swap.c index f587eb4d77d..240767f9dd4 100644 --- a/usr.bin/systat/swap.c +++ b/usr.bin/systat/swap.c @@ -43,8 +43,8 @@ static char sccsid[] = "@(#)swap.c 8.2 (Berkeley) 2/21/94"; #include #include #include -#include #include +#include #include #include @@ -118,6 +118,7 @@ initswap() char msgbuf[BUFSIZ]; static int once = 0; +#if 0 if (once) return (1); if (kvm_nlist(kd, syms)) { @@ -145,6 +146,9 @@ initswap() KGET1(VM_SWDEVT, sw, nswdev * sizeof(*sw), "swdevt"); once = 1; return (1); +#else + return (0); +#endif } void @@ -152,6 +156,7 @@ fetchswap() { int s, e, i; +#if 0 s = nswapmap * sizeof(*mp); if (kvm_read(kd, (long)kswapmap, mp, s) != s) error("cannot read swapmap: %s", kvm_geterr(kd)); @@ -194,6 +199,7 @@ fetchswap() s = bound; } } +#endif } void