summaryrefslogtreecommitdiffstats
path: root/sys/vm/vm_page.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/vm/vm_page.c')
-rw-r--r--sys/vm/vm_page.c26
1 files changed, 0 insertions, 26 deletions
diff --git a/sys/vm/vm_page.c b/sys/vm/vm_page.c
index b3eb945..d9f3528 100644
--- a/sys/vm/vm_page.c
+++ b/sys/vm/vm_page.c
@@ -988,32 +988,6 @@ vm_wait(void)
}
/*
- * vm_await: (also see VM_AWAIT macro)
- *
- * asleep on an event that will signal when free pages are available
- * for allocation.
- */
-
-void
-vm_await(void)
-{
- int s;
-
- s = splvm();
- if (curproc == pageproc) {
- vm_pageout_pages_needed = 1;
- asleep(&vm_pageout_pages_needed, PSWP, "vmwait", 0);
- } else {
- if (!vm_pages_needed) {
- vm_pages_needed++;
- wakeup(&vm_pages_needed);
- }
- asleep(&cnt.v_free_count, PVM, "vmwait", 0);
- }
- splx(s);
-}
-
-/*
* vm_page_activate:
*
* Put the specified page on the active list (if appropriate).
OpenPOWER on IntegriCloud