Home
last modified time | relevance | path

Searched refs:MallocCount (Results 1 – 1 of 1) sorted by relevance

/illumos-gate/usr/src/boot/libsa/
H A Dzalloc_malloc.c42 static int MallocCount; variable
91 if (++MallocCount > MallocMax) in Malloc_align()
92 MallocMax = MallocCount; in Malloc_align()
141 --MallocCount; in Free()
155 if (++MallocCount > MallocMax) in Calloc()
156 MallocMax = MallocCount; in Calloc()
186 if (++MallocCount > MallocMax) in Realloc()
187 MallocMax = MallocCount; in Realloc()
215 printf("Active Allocations: %d/%d\n", MallocCount, MallocMax); in mallocstats()