summaryrefslogtreecommitdiffstats
path: root/sys/uvm/uvm_pdaemon.c
diff options
context:
space:
mode:
authorthib <thib@openbsd.org>2010-09-26 12:53:27 +0000
committerthib <thib@openbsd.org>2010-09-26 12:53:27 +0000
commitbb34e034327daab89bcd3da4d040bc8ffc03c560 (patch)
tree45240e76876de0e15e81bb5e22e5370cde6a9c94 /sys/uvm/uvm_pdaemon.c
parentAllow mod_headers to handle RequestHeader directives known from apache2, (diff)
downloadwireguard-openbsd-bb34e034327daab89bcd3da4d040bc8ffc03c560.tar.xz
wireguard-openbsd-bb34e034327daab89bcd3da4d040bc8ffc03c560.zip
remove static so things show up in ddb.
ok miod@, oga@, tedu@
Diffstat (limited to 'sys/uvm/uvm_pdaemon.c')
-rw-r--r--sys/uvm/uvm_pdaemon.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/sys/uvm/uvm_pdaemon.c b/sys/uvm/uvm_pdaemon.c
index a4b44161fda..5fa7597c35d 100644
--- a/sys/uvm/uvm_pdaemon.c
+++ b/sys/uvm/uvm_pdaemon.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: uvm_pdaemon.c,v 1.55 2009/10/14 17:53:30 beck Exp $ */
+/* $OpenBSD: uvm_pdaemon.c,v 1.56 2010/09/26 12:53:27 thib Exp $ */
/* $NetBSD: uvm_pdaemon.c,v 1.23 2000/08/20 10:24:14 bjh21 Exp $ */
/*
@@ -96,9 +96,9 @@
* local prototypes
*/
-static void uvmpd_scan(void);
-static boolean_t uvmpd_scan_inactive(struct pglist *);
-static void uvmpd_tune(void);
+void uvmpd_scan(void);
+boolean_t uvmpd_scan_inactive(struct pglist *);
+void uvmpd_tune(void);
/*
* uvm_wait: wait (sleep) for the page daemon to free some pages
@@ -155,7 +155,7 @@ uvm_wait(const char *wmsg)
* => caller must call with page queues locked
*/
-static void
+void
uvmpd_tune(void)
{
UVMHIST_FUNC("uvmpd_tune"); UVMHIST_CALLED(pdhist);
@@ -329,7 +329,7 @@ uvm_aiodone_daemon(void *arg)
* => we return TRUE if we are exiting because we met our target
*/
-static boolean_t
+boolean_t
uvmpd_scan_inactive(struct pglist *pglst)
{
boolean_t retval = FALSE; /* assume we haven't hit target */