mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-04-22 14:31:59 -04:00
+ Added xTaskCatchUpTicks() which corrects the tick count value after the application code has held interrupts disabled for an extended period. + Updated the xTaskResumeAll() implementation so it uses the new xTaskCatchUpTicks() function mentioned above to unwind ticks that were pended while the scheduler was suspended. + Various maintenance on the message buffer, stream buffer and abort delay demos. + Change type of uxPendedTicks from UBaseType_t to TickType_t to ensure it has same type as variables it is compared to, and therefore also rename the variable xPendingTicks. + Correct spelling mistake within a comment that was common to all the ARMv7-M ports. |
||
---|---|---|
.. | ||
AbortDelay.c | ||
BlockQ.c | ||
blocktim.c | ||
comtest.c | ||
comtest_strings.c | ||
countsem.c | ||
crflash.c | ||
crhook.c | ||
death.c | ||
dynamic.c | ||
EventGroupsDemo.c | ||
flash.c | ||
flash_timer.c | ||
flop.c | ||
GenQTest.c | ||
integer.c | ||
IntQueue.c | ||
IntSemTest.c | ||
MessageBufferAMP.c | ||
MessageBufferDemo.c | ||
PollQ.c | ||
QPeek.c | ||
QueueOverwrite.c | ||
QueueSet.c | ||
QueueSetPolling.c | ||
readme.txt | ||
recmutex.c | ||
semtest.c | ||
sp_flop.c | ||
StaticAllocation.c | ||
StreamBufferDemo.c | ||
StreamBufferInterrupt.c | ||
TaskNotify.c | ||
TimerDemo.c |
This directory contains the implementation of the "common demo tasks". These are test tasks and demo tasks that are used by nearly all the demo applications.