summaryrefslogtreecommitdiff
path: root/usr.bin/vmstat
diff options
context:
space:
mode:
authorsimonb <simonb@NetBSD.org>2000-05-29 11:36:43 +0000
committersimonb <simonb@NetBSD.org>2000-05-29 11:36:43 +0000
commitcc0dc305fc774336b22ee1007c718b3a67aa9b8a (patch)
tree91a134e6ea5eae35b352e2b2dab4ccf6580abf7c /usr.bin/vmstat
parente94f50731b50f4f20258bbc5c3fb5adba8b496de (diff)
cp_time[] and the terminal chars in/out counters are u_int64_t's now.
Diffstat (limited to 'usr.bin/vmstat')
-rw-r--r--usr.bin/vmstat/dkstats.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/usr.bin/vmstat/dkstats.h b/usr.bin/vmstat/dkstats.h
index bfde443e533..094714d014b 100644
--- a/usr.bin/vmstat/dkstats.h
+++ b/usr.bin/vmstat/dkstats.h
@@ -1,4 +1,4 @@
-/* $NetBSD: dkstats.h,v 1.1 1996/05/10 23:19:28 thorpej Exp $ */
+/* $NetBSD: dkstats.h,v 1.2 2000/05/29 11:36:43 simonb Exp $ */
/*
* Copyright (c) 1996 John M. Vinopal
@@ -43,7 +43,7 @@ struct _disk {
u_int64_t *dk_seek; /* # of seeks (currently unused). */
u_int64_t *dk_bytes; /* # of bytes transfered. */
struct timeval *dk_time; /* Time spent in disk i/o. */
- long tk_nin; /* TTY Chars in. */
- long tk_nout; /* TTY Chars out. */
- long cp_time[CPUSTATES]; /* System timer ticks. */
+ u_int64_t tk_nin; /* TTY Chars in. */
+ u_int64_t tk_nout; /* TTY Chars out. */
+ u_int64_t cp_time[CPUSTATES]; /* System timer ticks. */
};