Using v7.2.0, it looks like there are an extra 8 bytes added for every pvPortMalloc call due to the computation of heapSTRUCT_SIZE. This is true for heap_2 and heap_4. Currently,
static const unsigned short heapSTRUCT_SIZE = ( sizeof( xBlockLink ) + portBYTE_ALIGNMENT – ( sizeof( xBlockLink ) % portBYTE_ALIGNMENT ) );
and in my case of a Cortex-M4 and a Keil compiler, portBYTE_ALIGNMENT is 8, and sizeof(xBlockLink) is 8. This line of code results in a heapSTRUCT_SIZE of 16 when the actual structure size is already on an 8 byte boundary. Would it be better to do something like,
static const unsigned short heapSTRUCT_SIZE = (sizeof(xBlockLink) & portBYTE_ALIGNMENT_MASK)?
(sizeof(xBlockLink) + (portBYTE_ALIGNMENT – (sizeof(xBlockLink) & portBYTE_ALIGNMENT_MASK))):
(sizeof(xBlockLink));
NOTE:This is a read only archive of threads posted to the FreeRTOS support forum. Use these archive pages to search previous posts. New forum support threads can be started at the FreeRTOS forums.
FreeRTOS Support Archive
The FreeRTOS support forum can be used for active support both from Amazon Web Services and the community. In return for using our software for free, we request you play fair and do your bit to help others! Sign up for an account and receive notifications of new support topics then help where you can.
This is a read only archive of threads posted to the FreeRTOS support forum. Use these archive pages to search previous posts. New forum support threads can be started at the FreeRTOS forums.
[FreeRTOS Home]
[Live FreeRTOS Forum]
[FAQ]
[Archive Top]
[October 2012 Threads]
Copyright (C) Amazon Web Services, Inc. or its affiliates. All rights reserved.