Add xPortResetHeapMinimumEverFreeHeapSize to heap5 (#1191)

The same was added to heap 4 in this PR - https://github.com/FreeRTOS/FreeRTOS-Kernel/pull/1189.

Signed-off-by: Gaurav Aggarwal <aggarg@amazon.com>
pull/1193/head
Gaurav-Aggarwal-AWS 3 months ago committed by GitHub
parent 8f7f451c2a
commit f239da06ec
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -457,6 +457,12 @@ size_t xPortGetMinimumEverFreeHeapSize( void )
} }
/*-----------------------------------------------------------*/ /*-----------------------------------------------------------*/
void xPortResetHeapMinimumEverFreeHeapSize( void )
{
xMinimumEverFreeBytesRemaining = xFreeBytesRemaining;
}
/*-----------------------------------------------------------*/
void * pvPortCalloc( size_t xNum, void * pvPortCalloc( size_t xNum,
size_t xSize ) size_t xSize )
{ {

Loading…
Cancel
Save