X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=rts%2FRtsUtils.c;h=a62a459be2d4de81870f9238d489533111d9f32e;hb=5f8b35ad729740cab1cb8c884deb405dcc758683;hp=a2a291970241c70355f786a5ffccd8d0a0c5754f;hpb=4307b489da14ddd13c85fe837c5f27bf991c312e;p=ghc-hetmet.git diff --git a/rts/RtsUtils.c b/rts/RtsUtils.c index a2a2919..a62a459 100644 --- a/rts/RtsUtils.c +++ b/rts/RtsUtils.c @@ -136,7 +136,7 @@ static void addAllocation(void *addr, size_t len) { } } -static void removeAllocation(void *addr) { +static void removeAllocation(void *addr, int overwrite_with_aa) { Allocated *prev, *a; if (addr == NULL) { @@ -150,7 +150,9 @@ static void removeAllocation(void *addr) { while (a != NULL) { if (a->addr == addr) { prev->next = a->next; - memset(addr, 0xaa, a->len); + if (overwrite_with_aa) { + memset(addr, 0xaa, a->len); + } free(a); RELEASE_LOCK(&allocator_mutex); return; @@ -210,7 +212,7 @@ stgReallocBytes (void *p, int n, char *msg) stg_exit(EXIT_INTERNAL_ERROR); } #if defined(DEBUG) - removeAllocation(p); + removeAllocation(p, 0); addAllocation(space, n2); #endif return space; @@ -239,7 +241,7 @@ void stgFree(void* p) { #if defined(DEBUG) - removeAllocation(p); + removeAllocation(p, 1); #endif free(p); }