summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorAriane van der Steldt <ariane@cvs.openbsd.org>2009-01-20 20:20:52 +0000
committerAriane van der Steldt <ariane@cvs.openbsd.org>2009-01-20 20:20:52 +0000
commitaa6bfc9420b57329cf6378e2b80e046472b61112 (patch)
tree930c8883c97f8f97331b8177645b94a350902121 /sys
parent81237197188ffd988eab4f864d578fc276f5aaff (diff)
Variables were never used, never implemented.
Ok miod, toby
Diffstat (limited to 'sys')
-rw-r--r--sys/uvm/uvm_page.h22
1 files changed, 1 insertions, 21 deletions
diff --git a/sys/uvm/uvm_page.h b/sys/uvm/uvm_page.h
index 49220e14611..5fbd32e8d2e 100644
--- a/sys/uvm/uvm_page.h
+++ b/sys/uvm/uvm_page.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: uvm_page.h,v 1.26 2007/12/18 11:05:52 thib Exp $ */
+/* $OpenBSD: uvm_page.h,v 1.27 2009/01/20 20:20:51 ariane Exp $ */
/* $NetBSD: uvm_page.h,v 1.19 2000/12/28 08:24:55 chs Exp $ */
/*
@@ -225,26 +225,6 @@ struct vm_physseg {
extern boolean_t vm_page_zero_enable;
/*
- * Each pageable resident page falls into one of three lists:
- *
- * free
- * Available for allocation now.
- * inactive
- * Not referenced in any map, but still has an
- * object/offset-page mapping, and may be dirty.
- * This is the list of pages that should be
- * paged out next.
- * active
- * A list of pages which have been placed in
- * at least one physical map. This list is
- * ordered, in LRU-like fashion.
- */
-
-extern struct pglist vm_page_queue_free; /* memory free queue */
-extern struct pglist vm_page_queue_active; /* active memory queue */
-extern struct pglist vm_page_queue_inactive; /* inactive memory queue */
-
-/*
* physical memory config is stored in vm_physmem.
*/