summaryrefslogtreecommitdiffstats
path: root/sys
diff options
context:
space:
mode:
authorgrog <grog@FreeBSD.org>1999-03-31 08:43:12 +0000
committergrog <grog@FreeBSD.org>1999-03-31 08:43:12 +0000
commit2559617dbe9dc07254a3592a1c9cab9c93fe7faf (patch)
tree8853e5d4447e7597979b432242c18f8ac6739fda /sys
parent9c659047e89b56648e8745188dcc605c4a10fbce (diff)
downloadFreeBSD-src-2559617dbe9dc07254a3592a1c9cab9c93fe7faf.zip
FreeBSD-src-2559617dbe9dc07254a3592a1c9cab9c93fe7faf.tar.gz
Destaticize some variables to allow checking on them when exiting.
Diffstat (limited to 'sys')
-rw-r--r--sys/dev/vinum/vinummemory.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/vinum/vinummemory.c b/sys/dev/vinum/vinummemory.c
index 4b62908..a5d10ee 100644
--- a/sys/dev/vinum/vinummemory.c
+++ b/sys/dev/vinum/vinummemory.c
@@ -114,13 +114,13 @@ expand_table(void **table, int oldsize, int newsize)
#define MALLOCENTRIES 16384
int malloccount = 0;
int highwater = 0; /* highest index ever allocated */
-static struct mc malloced[MALLOCENTRIES];
+struct mc malloced[MALLOCENTRIES];
#define FREECOUNT 64
int lastfree = 0;
struct mc freeinfo[FREECOUNT];
-static int total_malloced;
+int total_malloced;
static int mallocseq = 0;
caddr_t
OpenPOWER on IntegriCloud