FreeRTOS-Kernel/Source
Richard Barry 4c8e9edc8d Add static qualifier to the function that starts the first task in GCC/ARM_CM3/port.c.
Added a _nop() after the _disable_interrupt() in CCS4/MSP430X/portmacro.h.
Added a NOP() after the disabling of interrupts in IAR/MSP430X/portmacro.h.
2012-03-11 20:14:50 +00:00
..
include Added xSemaphoreGetMutexHolder() macro and equivalent function. 2012-03-11 15:23:51 +00:00
portable Add static qualifier to the function that starts the first task in GCC/ARM_CM3/port.c. 2012-03-11 20:14:50 +00:00
croutine.c Change version numbers to V7.1.0. 2011-12-13 16:24:24 +00:00
list.c Change version numbers to V7.1.0. 2011-12-13 16:24:24 +00:00
queue.c Added xSemaphoreGetMutexHolder() macro and equivalent function. 2012-03-11 15:23:51 +00:00
readme.txt Correct typeo. 2009-05-29 08:12:46 +00:00
tasks.c Change version numbers to V7.1.0. 2011-12-13 16:24:24 +00:00
timers.c Change version numbers to V7.1.0. 2011-12-13 16:24:24 +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.