diff options
author | Thordur I. Bjornsson <thib@cvs.openbsd.org> | 2010-09-26 12:53:28 +0000 |
---|---|---|
committer | Thordur I. Bjornsson <thib@cvs.openbsd.org> | 2010-09-26 12:53:28 +0000 |
commit | cf1992f09ba99b51344245a0ee445190806b04f7 (patch) | |
tree | 30dabf41ed62668824e5d7a5eaac48c573bc318f /sys/uvm/uvm_pdaemon.c | |
parent | 7be9483015dbb094040b50cf42647f6c1b0afb94 (diff) |
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.c | 12 |
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 */ |