From efea439a561aceb37e5bdce9b48f11286134e7f3 Mon Sep 17 00:00:00 2001 From: ToyB-Chan Date: Thu, 11 Jun 2026 23:44:27 +0200 Subject: [PATCH] Update minimal_heap.h --- minimal_heap.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/minimal_heap.h b/minimal_heap.h index b9bbea7..fd5c0cf 100644 --- a/minimal_heap.h +++ b/minimal_heap.h @@ -54,7 +54,7 @@ typedef struct _MIHP_HeapConfig size_t MinMemoryAreaSize; // Must be a multiple of AllocationAlignment size_t MaxMemoryAreaSize; // Must be a multiple of AllocationAlignment - size_t MaxHeapSize; + size_t MaxHeapSize; // Maximum size the heap is allowed to grow to. May exceed slightly if PlatformRequestMemory returns a larger area than requested size_t MinTotalTraversalsBeforeHeapExpansion; // Minimal amounts of traversals during allocation before considering expanding the heap uint8_t MinHeapTraversalPercentToExpand; // Minimal integer percent of the heap traversed before expanding the heap