diff options
| author | Greg Lehey <grog@FreeBSD.org> | 1999-03-31 08:43:12 +0000 |
|---|---|---|
| committer | Greg Lehey <grog@FreeBSD.org> | 1999-03-31 08:43:12 +0000 |
| commit | 96c60597a84bbe2f2e638f9949496e67213106be (patch) | |
| tree | 6e5ec6a37466b88117367fa72bc35bce71d72a45 /sys/dev/vinum | |
| parent | dbb49f899b0f5357c0b0150957d1700ad7a3456b (diff) | |
Notes
Diffstat (limited to 'sys/dev/vinum')
| -rw-r--r-- | sys/dev/vinum/vinummemory.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/vinum/vinummemory.c b/sys/dev/vinum/vinummemory.c index 4b6290869964..a5d10ee5f8e1 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 |
