aboutsummaryrefslogtreecommitdiff
path: root/sys/sys/vmmeter.h
diff options
context:
space:
mode:
Diffstat (limited to 'sys/sys/vmmeter.h')
-rw-r--r--sys/sys/vmmeter.h38
1 files changed, 0 insertions, 38 deletions
diff --git a/sys/sys/vmmeter.h b/sys/sys/vmmeter.h
index fc2966526b36..793f32d37738 100644
--- a/sys/sys/vmmeter.h
+++ b/sys/sys/vmmeter.h
@@ -207,42 +207,4 @@ struct vmtotal {
int32_t t_free; /* free memory pages */
};
-/*
- * Optional instrumentation.
- */
-#ifdef PGINPROF
-
-#define NDMON 128
-#define NSMON 128
-
-#define DRES 20
-#define SRES 5
-
-#define PMONMIN 20
-#define PRES 50
-#define NPMON 64
-
-#define RMONMIN 130
-#define RRES 5
-#define NRMON 64
-
-/* data and stack size distribution counters */
-u_int dmon[NDMON+1];
-u_int smon[NSMON+1];
-
-/* page in time distribution counters */
-u_int pmon[NPMON+2];
-
-/* reclaim time distribution counters */
-u_int rmon[NRMON+2];
-
-int pmonmin;
-int pres;
-int rmonmin;
-int rres;
-
-u_int rectime; /* accumulator for reclaim times */
-u_int pgintime; /* accumulator for page in times */
-#endif
-
#endif