*/
void *Heap_Extend(size_t Bytes)
{
-
Debug("Heap_Extend(0x%x)", Bytes);
// Bounds Check
if( new_end > (tHeapHead*)MM_KHEAP_MAX )
{
Log_Error("Heap", "Heap limit exceeded (%p)", (void*)new_end);
- // TODO: Clip allocation to avaliable space, and have caller check returned block
+ // TODO: Clip allocation to available space, and have caller check returned block
return NULL;
}
}
/**
- * \brief Merges two ajacent heap blocks
+ * \brief Merges two adjacent heap blocks
*/
void *Heap_Merge(tHeapHead *Head)
{