xref: /original-bsd/sys/sys/dkstat.h (revision 6219b5e8)
1 /*	dkstat.h	6.2	83/10/08	*/
2 
3 /*
4  * Instrumentation
5  */
6 #define	CPUSTATES	4
7 
8 #define	CP_USER		0
9 #define	CP_NICE		1
10 #define	CP_SYS		2
11 #define	CP_IDLE		3
12 
13 #define	DK_NDRIVE	4
14 
15 #ifdef KERNEL
16 long	cp_time[CPUSTATES];
17 int	dk_ndrive;
18 int	dk_busy;
19 long	dk_time[DK_NDRIVE];
20 long	dk_seek[DK_NDRIVE];
21 long	dk_xfer[DK_NDRIVE];
22 long	dk_wds[DK_NDRIVE];
23 float	dk_mspw[DK_NDRIVE];
24 
25 long	tk_nin;
26 long	tk_nout;
27 #endif
28