FreeRTOS-Kernel/FreeRTOS/Source
Gaurav Aggarwal 0de2a2758a Fix definition of tskSTATIC_AND_DYNAMIC_ALLOCATION_POSSIBLE
tskSTATIC_AND_DYNAMIC_ALLOCATION_POSSIBLE was not correctly defined resulting in
dynamically allocated TCB not being freed when MPU was enabled. This commit fixes
the definition to ensure that dynamically allocated RAM (Stack and TCB) is freed
always.
2019-02-17 01:24:58 +00:00
..
include Fix definition of tskSTATIC_AND_DYNAMIC_ALLOCATION_POSSIBLE 2019-02-17 01:24:58 +00:00
portable Replace the pdf RISC-V documentation with links to the documentation web pages. 2019-02-16 01:15:33 +00:00
croutine.c Update version numbers ready for release. 2018-09-07 18:13:20 +00:00
event_groups.c Update version numbers ready for release. 2018-09-07 18:13:20 +00:00
list.c Update version numbers ready for release. 2018-09-07 18:13:20 +00:00
queue.c Minor synching - no functional changes. 2018-09-07 22:24:51 +00:00
readme.txt Add FreeRTOS-Plus directory. 2012-08-11 21:34:11 +00:00
stream_buffer.c Update version numbers ready for release. 2018-09-07 18:13:20 +00:00
tasks.c Fix definition of tskSTATIC_AND_DYNAMIC_ALLOCATION_POSSIBLE 2019-02-17 01:24:58 +00:00
timers.c Fix build failure when dynamic allocation is not enabled. 2019-02-16 20:21:47 +00:00

Each real time kernel port consists of three files that contain the core kernel
components and are common to every port, and one or more files that are 
specific to a particular microcontroller and or compiler.

+ The FreeRTOS/Source directory contains the three files that are common to 
every port - list.c, queue.c and tasks.c.  The kernel is contained within these 
three files.  croutine.c implements the optional co-routine functionality - which
is normally only used on very memory limited systems.

+ The FreeRTOS/Source/Portable directory contains the files that are specific to 
a particular microcontroller and or compiler.

+ The FreeRTOS/Source/include directory contains the real time kernel header 
files.

See the readme file in the FreeRTOS/Source/Portable directory for more 
information.