summaryrefslogtreecommitdiffstats
path: root/sys/uvm/uvm_meter.c
diff options
context:
space:
mode:
authorariane <ariane@openbsd.org>2009-05-08 13:50:15 +0000
committerariane <ariane@openbsd.org>2009-05-08 13:50:15 +0000
commit685124730d69cdadc8c20559dbee7cc7c97dc7dd (patch)
tree8bf7c494704728bb6b7e7c7ce615985c4265c5b4 /sys/uvm/uvm_meter.c
parentSort variables in env_keep. (diff)
downloadwireguard-openbsd-685124730d69cdadc8c20559dbee7cc7c97dc7dd.tar.xz
wireguard-openbsd-685124730d69cdadc8c20559dbee7cc7c97dc7dd.zip
Remove static qualifier of functions that are not inline.
Makes trace in ddb useful. ok oga
Diffstat (limited to 'sys/uvm/uvm_meter.c')
-rw-r--r--sys/uvm/uvm_meter.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/uvm/uvm_meter.c b/sys/uvm/uvm_meter.c
index 7a77b187e60..60c9dbf9362 100644
--- a/sys/uvm/uvm_meter.c
+++ b/sys/uvm/uvm_meter.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: uvm_meter.c,v 1.26 2009/03/23 13:25:11 art Exp $ */
+/* $OpenBSD: uvm_meter.c,v 1.27 2009/05/08 13:50:15 ariane Exp $ */
/* $NetBSD: uvm_meter.c,v 1.21 2001/07/14 06:36:03 matt Exp $ */
/*
@@ -76,7 +76,7 @@ static fixpt_t cexp[3] = {
* prototypes
*/
-static void uvm_loadav(struct loadavg *);
+void uvm_loadav(struct loadavg *);
/*
* uvm_meter: calculate load average and wake up the swapper (if needed)
@@ -94,7 +94,7 @@ uvm_meter(void)
* uvm_loadav: compute a tenex style load average of a quantity on
* 1, 5, and 15 minute intervals.
*/
-static void
+void
uvm_loadav(struct loadavg *avg)
{
CPU_INFO_ITERATOR cii;