summaryrefslogtreecommitdiffstats
path: root/lib.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib.c')
-rw-r--r--lib.c21
1 files changed, 18 insertions, 3 deletions
diff --git a/lib.c b/lib.c
index 839dc116..e7fa9ff9 100644
--- a/lib.c
+++ b/lib.c
@@ -1287,6 +1287,8 @@ val equal(val left, val right)
static mem_t *malloc_low_bound, *malloc_high_bound;
+alloc_bytes_t malloc_bytes;
+
mem_t *chk_malloc(size_t size)
{
mem_t *ptr = (mem_t *) malloc(size);
@@ -1299,23 +1301,35 @@ mem_t *chk_malloc(size_t size)
malloc_low_bound = ptr;
else if (ptr + size > malloc_high_bound)
malloc_high_bound = ptr + size;
+ malloc_bytes += size;
+ return ptr;
+}
+
+mem_t *chk_malloc_gc_more(size_t size)
+{
+ mem_t *ptr = (mem_t *) malloc(size);
+ assert (!async_sig_enabled);
+ if (size && ptr == 0)
+ ptr = (mem_t *) oom_realloc(0, size);
return ptr;
}
mem_t *chk_calloc(size_t n, size_t size)
{
mem_t *ptr = (mem_t *) calloc(n, size);
+ cnum total = (cnum) size * (cnum) n;
assert (!async_sig_enabled);
if (size && ptr == 0) {
- ptr = (mem_t *) oom_realloc(0, size);
- memset(ptr, 0, n * size);
+ ptr = (mem_t *) oom_realloc(0, total);
+ memset(ptr, 0, total);
}
if (ptr < malloc_low_bound)
malloc_low_bound = ptr;
else if (ptr + size > malloc_high_bound)
- malloc_high_bound = ptr + size;
+ malloc_high_bound = ptr + total;
+ malloc_bytes += total;
return ptr;
}
@@ -1331,6 +1345,7 @@ mem_t *chk_realloc(mem_t *old, size_t size)
malloc_low_bound = newptr;
else if (newptr + size > malloc_high_bound)
malloc_high_bound = newptr + size;
+ malloc_bytes += size;
return newptr;
}