Start development on BSD 4
[unix-history] / .ref-5cb41021d721f4e0ac572d592613f963e495d1ff / .ref-BSD-3 / usr / src / sys / h / vmmon.h
CommitLineData
e78f0c8d
BJ
1/* 2.1 vmmon.h 1/5/80 */
2
3#ifdef ERNIE
4
5#define NDMON 128
6#define NSMON 128
7
8#define DRES 20
9#define SRES 5
10
11#define PMONMIN 20
12#define PRES 50
13#define NPMON 64
14
15#define RMONMIN 130
16#define RRES 5
17#define NRMON 64
18
19/* data and stack size distribution counters */
20unsigned int dmon[NDMON+1];
21unsigned int smon[NSMON+1];
22
23/* page in time distribution counters */
24unsigned int pmon[NPMON+2];
25
26/* reclaim time distribution counters */
27unsigned int rmon[NRMON+2];
28
29int pmonmin;
30int pres;
31int rmonmin;
32int rres;
33#endif