Correct out of date comment in tasks.c.

Fix typo in comment in queue.h.
This commit is contained in:
Richard Barry 2017-12-28 20:20:26 +00:00
parent 13651934be
commit 0fe82b4d91
2 changed files with 2 additions and 2 deletions

View File

@ -233,7 +233,7 @@ typedef void * QueueSetMemberHandle_t;
/**
* queue. h
* <pre>
BaseType_t xQueueSendToToFront(
BaseType_t xQueueSendToFront(
QueueHandle_t xQueue,
const void *pvItemToQueue,
TickType_t xTicksToWait

View File

@ -3474,7 +3474,7 @@ static void prvCheckTasksWaitingTermination( void )
{
TCB_t *pxTCB;
/* uxDeletedTasksWaitingCleanUp is used to prevent vTaskSuspendAll()
/* uxDeletedTasksWaitingCleanUp is used to prevent taskENTER_CRITICAL()
being called too often in the idle task. */
while( uxDeletedTasksWaitingCleanUp > ( UBaseType_t ) 0U )
{