diff options
author | 2001-05-14 07:12:23 +0000 | |
---|---|---|
committer | 2001-05-14 07:12:23 +0000 | |
commit | 072d16a6a31ab317ed090a423e858b079f65347a (patch) | |
tree | 5f481b1feb1152ae867553c4c9757c7b60cb7836 | |
parent | Disk statistics via sysctl. (diff) | |
download | wireguard-openbsd-072d16a6a31ab317ed090a423e858b079f65347a.tar.xz wireguard-openbsd-072d16a6a31ab317ed090a423e858b079f65347a.zip |
long->int64_t for tty statistics, deraadt@ ok
-rw-r--r-- | sys/sys/dkstat.h | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/sys/sys/dkstat.h b/sys/sys/dkstat.h index b236238d9a9..6c40fde86ff 100644 --- a/sys/sys/dkstat.h +++ b/sys/sys/dkstat.h @@ -1,4 +1,4 @@ -/* $OpenBSD: dkstat.h,v 1.4 1997/11/23 03:19:20 mickey Exp $ */ +/* $OpenBSD: dkstat.h,v 1.5 2001/05/14 07:12:23 angelos Exp $ */ /* $NetBSD: dkstat.h,v 1.8 1995/12/28 19:16:31 thorpej Exp $ */ /*- @@ -52,8 +52,5 @@ #ifdef _KERNEL long cp_time[CPUSTATES]; -long tk_cancc; -long tk_nin; -long tk_nout; -long tk_rawcc; +int64_t tk_cancc, tk_nin, tk_nout, tk_rawcc; #endif |