struct heap_free_area *fa;
struct heap *heap = &__malloc_heap;
- mem -= MALLOC_ALIGNMENT;
- size = *(size_t *)mem;
+ size = MALLOC_SIZE (mem);
+ mem = MALLOC_BASE (mem);
MALLOC_DEBUG ("free: 0x%lx (base = 0x%lx, total_size = %d)\n",
(long)mem + MALLOC_ALIGNMENT, (long)mem, size);
__malloc_unlock ();
if (mem)
- /* Record the size of this block just before the returned address. */
+ /* Record the size of this block. */
{
- *(size_t *)mem = size;
- mem += MALLOC_ALIGNMENT;
+ MALLOC_SET_SIZE (mem, size);
+
+ mem = MALLOC_ADDR (mem);
MALLOC_DEBUG (" malloc: returning 0x%lx (base:0x%lx, total_size:%d)\n",
(long)mem, (long)mem - MALLOC_ALIGNMENT, size);