heap: Revert problematic size calculation

Minor heap fragmentation was not worth preventing
This commit is contained in:
shchmue 2019-10-31 16:46:36 -06:00
parent e578e09ff9
commit fc87643922

View File

@ -83,7 +83,7 @@ static void _heap_free(heap_t *heap, u32 addr)
hnode_t *node = (hnode_t *)(addr - sizeof(hnode_t));
node->used = 0;
node = heap->first;
while (1)
while (node)
{
if (!node->used)
{
@ -95,14 +95,7 @@ static void _heap_free(heap_t *heap, u32 addr)
node->next->prev = node->prev;
}
}
if (node->next)
node = node->next;
else
{
node->size = -1;
break;
}
node = node->next;
}
}
@ -121,7 +114,7 @@ void *malloc(u32 size)
void *calloc(u32 num, u32 size)
{
void *res = (void *)_heap_alloc(&_heap, num * size, sizeof(hnode_t));
memset(res, 0, ALIGN(num * size, sizeof(hnode_t)));
memset(res, 0, num * size);
return res;
}