11Documentation and download available at https://www.FreeRTOS.org/
22
3- Changes between FreeRTOS V10.6.2 and FreeRTOS V11.0.0 released December 15 , 2023
3+ Changes between FreeRTOS V10.6.2 and FreeRTOS V11.0.0 released December 18 , 2023
44
55 + SMP merged into the mainline: While FreeRTOS introduced Asymmetric
66 Multiprocessing (AMP) support in 2017, FreeRTOS Version 11.0.0 is the
@@ -20,8 +20,8 @@ Changes between FreeRTOS V10.6.2 and FreeRTOS V11.0.0 released December 15, 2023
2020 heap_4.c and heap_5.c to help catch pointer corruptions. The application can
2121 enable these checks by setting configENABLE_HEAP_PROTECTOR to 1 in their
2222 FreeRTOSConfig.h. We thank @oliverlavery for their contribution.
23- + Update vTaskList and vTaskGetRunTimeStats APIs to replace the use of sprintf
24- with snprintf.
23+ + Update vTaskList and vTaskGetRunTimeStats APIs with vTaskListTasks and
24+ vTaskGetRunTimeStatistics APIs to replace the use of sprintf with snprintf.
2525 + Add trace macros to ports that enable tracing the interaction of ISRs with
2626 scheduler events. We thank @conara for their contribution.
2727 + Add trace macros that enable tracing of entering and exiting all APIs. We
@@ -69,10 +69,10 @@ Changes between FreeRTOS V10.6.2 and FreeRTOS V11.0.0 released December 15, 2023
6969 heap_5.c by moving the size calculation out of the critical section. We thank
7070 @Moral-Hao for their contribution.
7171 + Update xTaskNotifyWait and ulTaskNotifyTake to remove the non-deterministic
72- operation of walking a linked link from a critical section. We thank
72+ operation of traversing a linked link from a critical section. We thank
7373 @karver8 for their contribution.
7474 + Fix stack end and stack size computation in POSIX port to meet the stack
75- alignment requirements on Mac . We thank @tegimeki for their contribution.
75+ alignment requirements on MacOS . We thank @tegimeki for their contribution.
7676 + Update the vTaskPrioritySet implementation to use the new priority when the
7777 task has inherited priority from a mutex it is holding, and the new priority
7878 is bigger than the inherited priority. We thank @Moral-Hao for their
0 commit comments