mirror of
https://github.com/opnsense/src.git
synced 2026-05-04 17:05:14 -04:00
Destaticize some variables to allow checking on them when exiting.
This commit is contained in:
parent
dbb49f899b
commit
96c60597a8
1 changed files with 2 additions and 2 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue