xref: /original-bsd/sys/sys/dkstat.h (revision e59fb703)
1 /*-
2  * Copyright (c) 1990 The Regents of the University of California.
3  * All rights reserved.
4  *
5  * %sccs.include.redist.c%
6  *
7  *	@(#)dkstat.h	7.5 (Berkeley) 02/15/91
8  */
9 
10 #define	CP_USER		0
11 #define	CP_NICE		1
12 #define	CP_SYS		2
13 #define	CP_IDLE		3
14 #define	CPUSTATES	4
15 
16 #define	DK_NDRIVE	8
17 #ifdef KERNEL
18 long cp_time[CPUSTATES];
19 long dk_seek[DK_NDRIVE];
20 long dk_time[DK_NDRIVE];
21 long dk_wds[DK_NDRIVE];
22 long dk_wpms[DK_NDRIVE];
23 long dk_xfer[DK_NDRIVE];
24 
25 int dk_busy;
26 int dk_ndrive;
27 
28 long tk_cancc;
29 long tk_nin;
30 long tk_nout;
31 long tk_rawcc;
32 #endif
33