summaryrefslogtreecommitdiff
path: root/usr.bin/vmstat
diff options
context:
space:
mode:
authorKenneth D. Merry <ken@FreeBSD.org>1998-09-20 00:11:23 +0000
committerKenneth D. Merry <ken@FreeBSD.org>1998-09-20 00:11:23 +0000
commitbcc6a3da928a9aabce7ffbeb98244693df76a7ff (patch)
treedf9f36a860acc42968692739bf3398a932b3f7dc /usr.bin/vmstat
parent0637c2cccdca610bf2886b53811c10996d2c987d (diff)
Notes
Diffstat (limited to 'usr.bin/vmstat')
-rw-r--r--usr.bin/vmstat/vmstat.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/usr.bin/vmstat/vmstat.c b/usr.bin/vmstat/vmstat.c
index 6119fb7fba37..3e6b65aca2b9 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.25 1998/09/15 08:16:43 gibbs Exp $";
+ "$Id: vmstat.c,v 1.26 1998/09/16 18:20:23 dillon Exp $";
#endif /* not lint */
#include <sys/param.h>
@@ -142,12 +142,14 @@ struct nlist namelist[] = {
};
struct statinfo cur, last;
-int num_devices, maxshowdevs, generation;
+int num_devices, maxshowdevs;
+long generation;
struct device_selection *dev_select;
int num_selected;
struct devstat_match *matches;
int num_matches = 0;
-int num_devices_specified, num_selections, select_generation;
+int num_devices_specified, num_selections;
+long select_generation;
char **specified_devices;
devstat_select_mode select_mode;