sachingole wrote on Tuesday, June 27, 2017:
Hi All,
Configuration I am using as below :
define configMINIMAL_STACK_SIZE ((uint16_t)512)
define configTOTAL_HEAP_SIZE ((size_t)(75 * 1024))
define configLARGE_STACK_SIZE ((uint16_t)3072)
Heap memory = 75KB
3 threads created, thread 1 with 512 stack, thread 2 with 512 stack and thread 3 with 3KB
Following is function call sequence and respective memory allocation debug message :-
- FreeHeap = 0, StackHighWaterMark = 0, xTaskGetTickCount = 0
- xQueue = xQueueCreate( mainQUEUE_LENGTH, sizeof( unsigned long ) );
- FreeHeap = 76696, StackHighWaterMark = 0, xTaskGetTickCount = 0
- xReturned = xTaskCreate( prvQueueReceiveTask, “Rx”, configMINIMAL_STACK_SIZE, NULL, mainQUEUE_RECEIVE_TASK_PRIORITY, NULL );
- prvQueueReceiveTask created.
- FreeHeap = 74536, StackHighWaterMark = 501, xTaskGetTickCount = 0
- xReturned = xTaskCreate( prvQueueSendTask, “TX”, configMINIMAL_STACK_SIZE, NULL, mainQUEUE_SEND_TASK_PRIORITY, NULL );
- prvQueueSendTask created.
9.** FreeHeap = 72376, StackHighWaterMark = 501, xTaskGetTickCount = 0**
10. xReturned = xTaskCreate( prvRamDiskTask, “DISK”, (configLARGE_STACK_SIZE), NULL, tskIDLE_PRIORITY, &xHandle );
11. prvRamDiskTask created.
12. FreeHeap = 59976, StackHighWaterMark = 501, xTaskGetTickCount = 0
13. FreeHeap = 57816, StackHighWaterMark = 3033, xTaskGetTickCount = 9
Q. 2KB memory got allocated after each thread creation in case of first 2 threads, but suddenly 12KB memory got allocated after 3rd thread creation. Change is in case of 3rd thread is 3KB stack is configured.
Can any one help to understand why this much memory got allocated at each stage.
Best regards,
Sachin