]> git.sur5r.net Git - freertos/blob - Source/tasks.c
Update to V5.4.2. See http://www.freertos.org/History.txt .
[freertos] / Source / tasks.c
1 /*\r
2         FreeRTOS V5.4.2 - Copyright (C) 2009 Real Time Engineers Ltd.\r
3 \r
4         This file is part of the FreeRTOS distribution.\r
5 \r
6         FreeRTOS is free software; you can redistribute it and/or modify it     under\r
7         the terms of the GNU General Public License (version 2) as published by the\r
8         Free Software Foundation and modified by the FreeRTOS exception.\r
9         **NOTE** The exception to the GPL is included to allow you to distribute a\r
10         combined work that includes FreeRTOS without being obliged to provide the\r
11         source code for proprietary components outside of the FreeRTOS kernel.\r
12         Alternative commercial license and support terms are also available upon\r
13         request.  See the licensing section of http://www.FreeRTOS.org for full\r
14         license details.\r
15 \r
16         FreeRTOS is distributed in the hope that it will be useful,     but WITHOUT\r
17         ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or\r
18         FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for\r
19         more details.\r
20 \r
21         You should have received a copy of the GNU General Public License along\r
22         with FreeRTOS; if not, write to the Free Software Foundation, Inc., 59\r
23         Temple Place, Suite 330, Boston, MA  02111-1307  USA.\r
24 \r
25 \r
26         ***************************************************************************\r
27         *                                                                         *\r
28         * Looking for a quick start?  Then check out the FreeRTOS eBook!          *\r
29         * See http://www.FreeRTOS.org/Documentation for details                   *\r
30         *                                                                         *\r
31         ***************************************************************************\r
32 \r
33         1 tab == 4 spaces!\r
34 \r
35         Please ensure to read the configuration and relevant port sections of the\r
36         online documentation.\r
37 \r
38         http://www.FreeRTOS.org - Documentation, latest information, license and\r
39         contact details.\r
40 \r
41         http://www.SafeRTOS.com - A version that is certified for use in safety\r
42         critical systems.\r
43 \r
44         http://www.OpenRTOS.com - Commercial support, development, porting,\r
45         licensing and training services.\r
46 */\r
47 \r
48 \r
49 #include <stdio.h>\r
50 #include <stdlib.h>\r
51 #include <string.h>\r
52 \r
53 #include "FreeRTOS.h"\r
54 #include "task.h"\r
55 #include "StackMacros.h"\r
56 \r
57 /*\r
58  * Macro to define the amount of stack available to the idle task.\r
59  */\r
60 #define tskIDLE_STACK_SIZE      configMINIMAL_STACK_SIZE\r
61 \r
62 /*\r
63  * Task control block.  A task control block (TCB) is allocated to each task,\r
64  * and stores the context of the task.\r
65  */\r
66 typedef struct tskTaskControlBlock\r
67 {\r
68         volatile portSTACK_TYPE *pxTopOfStack;          /*< Points to the location of the last item placed on the tasks stack.  THIS MUST BE THE FIRST MEMBER OF THE STRUCT. */\r
69         xListItem                               xGenericListItem;       /*< List item used to place the TCB in ready and blocked queues. */\r
70         xListItem                               xEventListItem;         /*< List item used to place the TCB in event lists. */\r
71         unsigned portBASE_TYPE  uxPriority;                     /*< The priority of the task where 0 is the lowest priority. */\r
72         portSTACK_TYPE                  *pxStack;                       /*< Points to the start of the stack. */\r
73         signed portCHAR                 pcTaskName[ configMAX_TASK_NAME_LEN ];/*< Descriptive name given to the task when created.  Facilitates debugging only. */\r
74 \r
75         #if ( portSTACK_GROWTH > 0 )\r
76                 portSTACK_TYPE *pxEndOfStack;                   /*< Used for stack overflow checking on architectures where the stack grows up from low memory. */\r
77         #endif\r
78 \r
79         #if ( portCRITICAL_NESTING_IN_TCB == 1 )\r
80                 unsigned portBASE_TYPE uxCriticalNesting;\r
81         #endif\r
82 \r
83         #if ( configUSE_TRACE_FACILITY == 1 )\r
84                 unsigned portBASE_TYPE  uxTCBNumber;    /*< This is used for tracing the scheduler and making debugging easier only. */\r
85         #endif\r
86 \r
87         #if ( configUSE_MUTEXES == 1 )\r
88                 unsigned portBASE_TYPE uxBasePriority;  /*< The priority last assigned to the task - used by the priority inheritance mechanism. */\r
89         #endif\r
90 \r
91         #if ( configUSE_APPLICATION_TASK_TAG == 1 )\r
92                 pdTASK_HOOK_CODE pxTaskTag;\r
93         #endif\r
94 \r
95         #if ( configGENERATE_RUN_TIME_STATS == 1 )\r
96                 unsigned portLONG ulRunTimeCounter;                     /*< Used for calculating how much CPU time each task is utilising. */\r
97         #endif\r
98 \r
99 } tskTCB;\r
100 \r
101 /*\r
102  * Some kernel aware debuggers require data to be viewed to be global, rather\r
103  * than file scope.\r
104  */\r
105 #ifdef portREMOVE_STATIC_QUALIFIER\r
106         #define static\r
107 #endif\r
108 \r
109 /*lint -e956 */\r
110 \r
111 tskTCB * volatile pxCurrentTCB = NULL;\r
112 \r
113 /* Lists for ready and blocked tasks. --------------------*/\r
114 \r
115 static xList pxReadyTasksLists[ configMAX_PRIORITIES ]; /*< Prioritised ready tasks. */\r
116 static xList xDelayedTaskList1;                                                 /*< Delayed tasks. */\r
117 static xList xDelayedTaskList2;                                                 /*< Delayed tasks (two lists are used - one for delays that have overflowed the current tick count. */\r
118 static xList * volatile pxDelayedTaskList;                              /*< Points to the delayed task list currently being used. */\r
119 static xList * volatile pxOverflowDelayedTaskList;              /*< Points to the delayed task list currently being used to hold tasks that have overflowed the current tick count. */\r
120 static xList xPendingReadyList;                                                 /*< Tasks that have been readied while the scheduler was suspended.  They will be moved to the ready queue when the scheduler is resumed. */\r
121 \r
122 #if ( INCLUDE_vTaskDelete == 1 )\r
123 \r
124         static volatile xList xTasksWaitingTermination;         /*< Tasks that have been deleted - but the their memory not yet freed. */\r
125         static volatile unsigned portBASE_TYPE uxTasksDeleted = ( unsigned portBASE_TYPE ) 0;\r
126 \r
127 #endif\r
128 \r
129 #if ( INCLUDE_vTaskSuspend == 1 )\r
130 \r
131         static xList xSuspendedTaskList;                                        /*< Tasks that are currently suspended. */\r
132 \r
133 #endif\r
134 \r
135 /* File private variables. --------------------------------*/\r
136 static volatile unsigned portBASE_TYPE uxCurrentNumberOfTasks   = ( unsigned portBASE_TYPE ) 0;\r
137 static volatile portTickType xTickCount                                                 = ( portTickType ) 0;\r
138 static unsigned portBASE_TYPE uxTopUsedPriority                                 = tskIDLE_PRIORITY;\r
139 static volatile unsigned portBASE_TYPE uxTopReadyPriority               = tskIDLE_PRIORITY;\r
140 static volatile signed portBASE_TYPE xSchedulerRunning                  = pdFALSE;\r
141 static volatile unsigned portBASE_TYPE uxSchedulerSuspended             = ( unsigned portBASE_TYPE ) pdFALSE;\r
142 static volatile unsigned portBASE_TYPE uxMissedTicks                    = ( unsigned portBASE_TYPE ) 0;\r
143 static volatile portBASE_TYPE xMissedYield                                              = ( portBASE_TYPE ) pdFALSE;\r
144 static volatile portBASE_TYPE xNumOfOverflows                                   = ( portBASE_TYPE ) 0;\r
145 static unsigned portBASE_TYPE uxTaskNumber                                              = ( unsigned portBASE_TYPE ) 0;\r
146 \r
147 #if ( configGENERATE_RUN_TIME_STATS == 1 )\r
148 \r
149         static portCHAR pcStatsString[ 50 ];\r
150         static unsigned portLONG ulTaskSwitchedInTime = 0UL;    /*< Holds the value of a timer/counter the last time a task was switched in. */\r
151         static void prvGenerateRunTimeStatsForTasksInList( const signed portCHAR *pcWriteBuffer, xList *pxList, unsigned portLONG ulTotalRunTime );\r
152 \r
153 #endif\r
154 \r
155 /* Debugging and trace facilities private variables and macros. ------------*/\r
156 \r
157 /*\r
158  * The value used to fill the stack of a task when the task is created.  This\r
159  * is used purely for checking the high water mark for tasks.\r
160  */\r
161 #define tskSTACK_FILL_BYTE      ( 0xa5 )\r
162 \r
163 /*\r
164  * Macros used by vListTask to indicate which state a task is in.\r
165  */\r
166 #define tskBLOCKED_CHAR         ( ( signed portCHAR ) 'B' )\r
167 #define tskREADY_CHAR           ( ( signed portCHAR ) 'R' )\r
168 #define tskDELETED_CHAR         ( ( signed portCHAR ) 'D' )\r
169 #define tskSUSPENDED_CHAR       ( ( signed portCHAR ) 'S' )\r
170 \r
171 /*\r
172  * Macros and private variables used by the trace facility.\r
173  */\r
174 #if ( configUSE_TRACE_FACILITY == 1 )\r
175 \r
176         #define tskSIZE_OF_EACH_TRACE_LINE                      ( ( unsigned portLONG ) ( sizeof( unsigned portLONG ) + sizeof( unsigned portLONG ) ) )\r
177         static volatile signed portCHAR * volatile pcTraceBuffer;\r
178         static signed portCHAR *pcTraceBufferStart;\r
179         static signed portCHAR *pcTraceBufferEnd;\r
180         static signed portBASE_TYPE xTracing = pdFALSE;\r
181         static unsigned portBASE_TYPE uxPreviousTask = 255;\r
182         static portCHAR pcStatusString[ 50 ];\r
183 \r
184 #endif\r
185 \r
186 /*-----------------------------------------------------------*/\r
187 \r
188 /*\r
189  * Macro that writes a trace of scheduler activity to a buffer.  This trace\r
190  * shows which task is running when and is very useful as a debugging tool.\r
191  * As this macro is called each context switch it is a good idea to undefine\r
192  * it if not using the facility.\r
193  */\r
194 #if ( configUSE_TRACE_FACILITY == 1 )\r
195 \r
196         #define vWriteTraceToBuffer()                                                                                                                                   \\r
197         {                                                                                                                                                                                               \\r
198                 if( xTracing )                                                                                                                                                          \\r
199                 {                                                                                                                                                                                       \\r
200                         if( uxPreviousTask != pxCurrentTCB->uxTCBNumber )                                                                               \\r
201                         {                                                                                                                                                                               \\r
202                                 if( ( pcTraceBuffer + tskSIZE_OF_EACH_TRACE_LINE ) < pcTraceBufferEnd )                         \\r
203                                 {                                                                                                                                                                       \\r
204                                         uxPreviousTask = pxCurrentTCB->uxTCBNumber;                                                                             \\r
205                                         *( unsigned portLONG * ) pcTraceBuffer = ( unsigned portLONG ) xTickCount;              \\r
206                                         pcTraceBuffer += sizeof( unsigned portLONG );                                                                   \\r
207                                         *( unsigned portLONG * ) pcTraceBuffer = ( unsigned portLONG ) uxPreviousTask;  \\r
208                                         pcTraceBuffer += sizeof( unsigned portLONG );                                                                   \\r
209                                 }                                                                                                                                                                       \\r
210                                 else                                                                                                                                                            \\r
211                                 {                                                                                                                                                                       \\r
212                                         xTracing = pdFALSE;                                                                                                                             \\r
213                                 }                                                                                                                                                                       \\r
214                         }                                                                                                                                                                               \\r
215                 }                                                                                                                                                                                       \\r
216         }\r
217 \r
218 #else\r
219 \r
220         #define vWriteTraceToBuffer()\r
221 \r
222 #endif\r
223 /*-----------------------------------------------------------*/\r
224 \r
225 /*\r
226  * Place the task represented by pxTCB into the appropriate ready queue for\r
227  * the task.  It is inserted at the end of the list.  One quirk of this is\r
228  * that if the task being inserted is at the same priority as the currently\r
229  * executing task, then it will only be rescheduled after the currently\r
230  * executing task has been rescheduled.\r
231  */\r
232 #define prvAddTaskToReadyQueue( pxTCB )                                                                                                                                                 \\r
233 {                                                                                                                                                                                                                               \\r
234         if( pxTCB->uxPriority > uxTopReadyPriority )                                                                                                                            \\r
235         {                                                                                                                                                                                                                       \\r
236                 uxTopReadyPriority = pxTCB->uxPriority;                                                                                                                                 \\r
237         }                                                                                                                                                                                                                       \\r
238         vListInsertEnd( ( xList * ) &( pxReadyTasksLists[ pxTCB->uxPriority ] ), &( pxTCB->xGenericListItem ) );        \\r
239 }\r
240 /*-----------------------------------------------------------*/\r
241 \r
242 /*\r
243  * Macro that looks at the list of tasks that are currently delayed to see if\r
244  * any require waking.\r
245  *\r
246  * Tasks are stored in the queue in the order of their wake time - meaning\r
247  * once one tasks has been found whose timer has not expired we need not look\r
248  * any further down the list.\r
249  */\r
250 #define prvCheckDelayedTasks()                                                                                                                                                                          \\r
251 {                                                                                                                                                                                                                                       \\r
252 register tskTCB *pxTCB;                                                                                                                                                                                         \\r
253                                                                                                                                                                                                                                         \\r
254         while( ( pxTCB = ( tskTCB * ) listGET_OWNER_OF_HEAD_ENTRY( pxDelayedTaskList ) ) != NULL )                                              \\r
255         {                                                                                                                                                                                                                               \\r
256                 if( xTickCount < listGET_LIST_ITEM_VALUE( &( pxTCB->xGenericListItem ) ) )                                                                      \\r
257                 {                                                                                                                                                                                                                       \\r
258                         break;                                                                                                                                                                                                  \\r
259                 }                                                                                                                                                                                                                       \\r
260                 vListRemove( &( pxTCB->xGenericListItem ) );                                                                                                                            \\r
261                 /* Is the task waiting on an event also? */                                                                                                                                     \\r
262                 if( pxTCB->xEventListItem.pvContainer )                                                                                                                                         \\r
263                 {                                                                                                                                                                                                                       \\r
264                         vListRemove( &( pxTCB->xEventListItem ) );                                                                                                                              \\r
265                 }                                                                                                                                                                                                                       \\r
266                 prvAddTaskToReadyQueue( pxTCB );                                                                                                                                                        \\r
267         }                                                                                                                                                                                                                               \\r
268 }\r
269 /*-----------------------------------------------------------*/\r
270 \r
271 /*\r
272  * Several functions take an xTaskHandle parameter that can optionally be NULL,\r
273  * where NULL is used to indicate that the handle of the currently executing\r
274  * task should be used in place of the parameter.  This macro simply checks to\r
275  * see if the parameter is NULL and returns a pointer to the appropriate TCB.\r
276  */\r
277 #define prvGetTCBFromHandle( pxHandle ) ( ( pxHandle == NULL ) ? ( tskTCB * ) pxCurrentTCB : ( tskTCB * ) pxHandle )\r
278 \r
279 \r
280 /* File private functions. --------------------------------*/\r
281 \r
282 /*\r
283  * Utility to ready a TCB for a given task.  Mainly just copies the parameters\r
284  * into the TCB structure.\r
285  */\r
286 static void prvInitialiseTCBVariables( tskTCB *pxTCB, const signed portCHAR * const pcName, unsigned portBASE_TYPE uxPriority );\r
287 \r
288 /*\r
289  * Utility to ready all the lists used by the scheduler.  This is called\r
290  * automatically upon the creation of the first task.\r
291  */\r
292 static void prvInitialiseTaskLists( void );\r
293 \r
294 /*\r
295  * The idle task, which as all tasks is implemented as a never ending loop.\r
296  * The idle task is automatically created and added to the ready lists upon\r
297  * creation of the first user task.\r
298  *\r
299  * The portTASK_FUNCTION_PROTO() macro is used to allow port/compiler specific\r
300  * language extensions.  The equivalent prototype for this function is:\r
301  *\r
302  * void prvIdleTask( void *pvParameters );\r
303  *\r
304  */\r
305 static portTASK_FUNCTION_PROTO( prvIdleTask, pvParameters );\r
306 \r
307 /*\r
308  * Utility to free all memory allocated by the scheduler to hold a TCB,\r
309  * including the stack pointed to by the TCB.\r
310  *\r
311  * This does not free memory allocated by the task itself (i.e. memory\r
312  * allocated by calls to pvPortMalloc from within the tasks application code).\r
313  */\r
314 #if ( ( INCLUDE_vTaskDelete == 1 ) || ( INCLUDE_vTaskCleanUpResources == 1 ) )\r
315 \r
316         static void prvDeleteTCB( tskTCB *pxTCB );\r
317 \r
318 #endif\r
319 \r
320 /*\r
321  * Used only by the idle task.  This checks to see if anything has been placed\r
322  * in the list of tasks waiting to be deleted.  If so the task is cleaned up\r
323  * and its TCB deleted.\r
324  */\r
325 static void prvCheckTasksWaitingTermination( void );\r
326 \r
327 /*\r
328  * Allocates memory from the heap for a TCB and associated stack.  Checks the\r
329  * allocation was successful.\r
330  */\r
331 static tskTCB *prvAllocateTCBAndStack( unsigned portSHORT usStackDepth );\r
332 \r
333 /*\r
334  * Called from vTaskList.  vListTasks details all the tasks currently under\r
335  * control of the scheduler.  The tasks may be in one of a number of lists.\r
336  * prvListTaskWithinSingleList accepts a list and details the tasks from\r
337  * within just that list.\r
338  *\r
339  * THIS FUNCTION IS INTENDED FOR DEBUGGING ONLY, AND SHOULD NOT BE CALLED FROM\r
340  * NORMAL APPLICATION CODE.\r
341  */\r
342 #if ( configUSE_TRACE_FACILITY == 1 )\r
343 \r
344         static void prvListTaskWithinSingleList( const signed portCHAR *pcWriteBuffer, xList *pxList, signed portCHAR cStatus );\r
345 \r
346 #endif\r
347 \r
348 /*\r
349  * When a task is created, the stack of the task is filled with a known value.\r
350  * This function determines the 'high water mark' of the task stack by\r
351  * determining how much of the stack remains at the original preset value.\r
352  */\r
353 #if ( ( configUSE_TRACE_FACILITY == 1 ) || ( INCLUDE_uxTaskGetStackHighWaterMark == 1 ) )\r
354 \r
355         unsigned portSHORT usTaskCheckFreeStackSpace( const unsigned portCHAR * pucStackByte );\r
356 \r
357 #endif\r
358 \r
359 \r
360 /*lint +e956 */\r
361 \r
362 \r
363 \r
364 /*-----------------------------------------------------------\r
365  * TASK CREATION API documented in task.h\r
366  *----------------------------------------------------------*/\r
367 \r
368 signed portBASE_TYPE xTaskCreate( pdTASK_CODE pvTaskCode, const signed portCHAR * const pcName, unsigned portSHORT usStackDepth, void *pvParameters, unsigned portBASE_TYPE uxPriority, xTaskHandle *pxCreatedTask )\r
369 {\r
370 signed portBASE_TYPE xReturn;\r
371 tskTCB * pxNewTCB;\r
372 \r
373         /* Allocate the memory required by the TCB and stack for the new task.\r
374         checking that the allocation was successful. */\r
375         pxNewTCB = prvAllocateTCBAndStack( usStackDepth );\r
376 \r
377         if( pxNewTCB != NULL )\r
378         {\r
379                 portSTACK_TYPE *pxTopOfStack;\r
380 \r
381                 /* Setup the newly allocated TCB with the initial state of the task. */\r
382                 prvInitialiseTCBVariables( pxNewTCB, pcName, uxPriority );\r
383 \r
384                 /* Calculate the top of stack address.  This depends on whether the\r
385                 stack grows from high memory to low (as per the 80x86) or visa versa.\r
386                 portSTACK_GROWTH is used to make the result positive or negative as\r
387                 required by the port. */\r
388                 #if portSTACK_GROWTH < 0\r
389                 {\r
390                         pxTopOfStack = pxNewTCB->pxStack + ( usStackDepth - 1 ) - ( ( usStackDepth - 1 ) % portBYTE_ALIGNMENT );\r
391                 }\r
392                 #else\r
393                 {\r
394                         pxTopOfStack = pxNewTCB->pxStack;\r
395 \r
396                         /* If we want to use stack checking on architectures that use\r
397                         a positive stack growth direction then we also need to store the\r
398                         other extreme of the stack space. */\r
399                         pxNewTCB->pxEndOfStack = pxNewTCB->pxStack + ( usStackDepth - 1 );\r
400                 }\r
401                 #endif\r
402 \r
403                 /* Initialize the TCB stack to look as if the task was already running,\r
404                 but had been interrupted by the scheduler.  The return address is set\r
405                 to the start of the task function. Once the stack has been initialised\r
406                 the     top of stack variable is updated. */\r
407                 pxNewTCB->pxTopOfStack = pxPortInitialiseStack( pxTopOfStack, pvTaskCode, pvParameters );\r
408 \r
409                 /* We are going to manipulate the task queues to add this task to a\r
410                 ready list, so must make sure no interrupts occur. */\r
411                 portENTER_CRITICAL();\r
412                 {\r
413                         uxCurrentNumberOfTasks++;\r
414                         if( uxCurrentNumberOfTasks == ( unsigned portBASE_TYPE ) 1 )\r
415                         {\r
416                                 /* As this is the first task it must also be the current task. */\r
417                                 pxCurrentTCB =  pxNewTCB;\r
418 \r
419                                 /* This is the first task to be created so do the preliminary\r
420                                 initialisation required.  We will not recover if this call\r
421                                 fails, but we will report the failure. */\r
422                                 prvInitialiseTaskLists();\r
423                         }\r
424                         else\r
425                         {\r
426                                 /* If the scheduler is not already running, make this task the\r
427                                 current task if it is the highest priority task to be created\r
428                                 so far. */\r
429                                 if( xSchedulerRunning == pdFALSE )\r
430                                 {\r
431                                         if( pxCurrentTCB->uxPriority <= uxPriority )\r
432                                         {\r
433                                                 pxCurrentTCB = pxNewTCB;\r
434                                         }\r
435                                 }\r
436                         }\r
437 \r
438                         /* Remember the top priority to make context switching faster.  Use\r
439                         the priority in pxNewTCB as this has been capped to a valid value. */\r
440                         if( pxNewTCB->uxPriority > uxTopUsedPriority )\r
441                         {\r
442                                 uxTopUsedPriority = pxNewTCB->uxPriority;\r
443                         }\r
444 \r
445                         #if ( configUSE_TRACE_FACILITY == 1 )\r
446                         {\r
447                                 /* Add a counter into the TCB for tracing only. */\r
448                                 pxNewTCB->uxTCBNumber = uxTaskNumber;\r
449                         }\r
450                         #endif\r
451                         uxTaskNumber++;\r
452 \r
453                         prvAddTaskToReadyQueue( pxNewTCB );\r
454 \r
455                         xReturn = pdPASS;\r
456                         traceTASK_CREATE( pxNewTCB );\r
457                 }\r
458                 portEXIT_CRITICAL();\r
459         }\r
460         else\r
461         {\r
462                 xReturn = errCOULD_NOT_ALLOCATE_REQUIRED_MEMORY;\r
463                 traceTASK_CREATE_FAILED( pxNewTCB );\r
464         }\r
465 \r
466         if( xReturn == pdPASS )\r
467         {\r
468                 if( ( void * ) pxCreatedTask != NULL )\r
469                 {\r
470                         /* Pass the TCB out - in an anonymous way.  The calling function/\r
471                         task can use this as a handle to delete the task later if\r
472                         required.*/\r
473                         *pxCreatedTask = ( xTaskHandle ) pxNewTCB;\r
474                 }\r
475 \r
476                 if( xSchedulerRunning != pdFALSE )\r
477                 {\r
478                         /* If the created task is of a higher priority than the current task\r
479                         then it should run now. */\r
480                         if( pxCurrentTCB->uxPriority < uxPriority )\r
481                         {\r
482                                 taskYIELD();\r
483                         }\r
484                 }\r
485         }\r
486 \r
487         return xReturn;\r
488 }\r
489 /*-----------------------------------------------------------*/\r
490 \r
491 #if ( INCLUDE_vTaskDelete == 1 )\r
492 \r
493         void vTaskDelete( xTaskHandle pxTaskToDelete )\r
494         {\r
495         tskTCB *pxTCB;\r
496 \r
497                 taskENTER_CRITICAL();\r
498                 {\r
499                         /* Ensure a yield is performed if the current task is being\r
500                         deleted. */\r
501                         if( pxTaskToDelete == pxCurrentTCB )\r
502                         {\r
503                                 pxTaskToDelete = NULL;\r
504                         }\r
505 \r
506                         /* If null is passed in here then we are deleting ourselves. */\r
507                         pxTCB = prvGetTCBFromHandle( pxTaskToDelete );\r
508 \r
509                         /* Remove task from the ready list and place in the     termination list.\r
510                         This will stop the task from be scheduled.  The idle task will check\r
511                         the termination list and free up any memory allocated by the\r
512                         scheduler for the TCB and stack. */\r
513                         vListRemove( &( pxTCB->xGenericListItem ) );\r
514 \r
515                         /* Is the task waiting on an event also? */\r
516                         if( pxTCB->xEventListItem.pvContainer )\r
517                         {\r
518                                 vListRemove( &( pxTCB->xEventListItem ) );\r
519                         }\r
520 \r
521                         vListInsertEnd( ( xList * ) &xTasksWaitingTermination, &( pxTCB->xGenericListItem ) );\r
522 \r
523                         /* Increment the ucTasksDeleted variable so the idle task knows\r
524                         there is a task that has been deleted and that it should therefore\r
525                         check the xTasksWaitingTermination list. */\r
526                         ++uxTasksDeleted;\r
527 \r
528                         /* Increment the uxTaskNumberVariable also so kernel aware debuggers\r
529                         can detect that the task lists need re-generating. */\r
530                         uxTaskNumber++;\r
531 \r
532                         traceTASK_DELETE( pxTCB );\r
533                 }\r
534                 taskEXIT_CRITICAL();\r
535 \r
536                 /* Force a reschedule if we have just deleted the current task. */\r
537                 if( xSchedulerRunning != pdFALSE )\r
538                 {\r
539                         if( ( void * ) pxTaskToDelete == NULL )\r
540                         {\r
541                                 taskYIELD();\r
542                         }\r
543                 }\r
544         }\r
545 \r
546 #endif\r
547 \r
548 \r
549 \r
550 \r
551 \r
552 \r
553 /*-----------------------------------------------------------\r
554  * TASK CONTROL API documented in task.h\r
555  *----------------------------------------------------------*/\r
556 \r
557 #if ( INCLUDE_vTaskDelayUntil == 1 )\r
558 \r
559         void vTaskDelayUntil( portTickType * const pxPreviousWakeTime, portTickType xTimeIncrement )\r
560         {\r
561         portTickType xTimeToWake;\r
562         portBASE_TYPE xAlreadyYielded, xShouldDelay = pdFALSE;\r
563 \r
564                 vTaskSuspendAll();\r
565                 {\r
566                         /* Generate the tick time at which the task wants to wake. */\r
567                         xTimeToWake = *pxPreviousWakeTime + xTimeIncrement;\r
568 \r
569                         if( xTickCount < *pxPreviousWakeTime )\r
570                         {\r
571                                 /* The tick count has overflowed since this function was\r
572                                 lasted called.  In this case the only time we should ever\r
573                                 actually delay is if the wake time has also     overflowed,\r
574                                 and the wake time is greater than the tick time.  When this\r
575                                 is the case it is as if neither time had overflowed. */\r
576                                 if( ( xTimeToWake < *pxPreviousWakeTime ) && ( xTimeToWake > xTickCount ) )\r
577                                 {\r
578                                         xShouldDelay = pdTRUE;\r
579                                 }\r
580                         }\r
581                         else\r
582                         {\r
583                                 /* The tick time has not overflowed.  In this case we will\r
584                                 delay if either the wake time has overflowed, and/or the\r
585                                 tick time is less than the wake time. */\r
586                                 if( ( xTimeToWake < *pxPreviousWakeTime ) || ( xTimeToWake > xTickCount ) )\r
587                                 {\r
588                                         xShouldDelay = pdTRUE;\r
589                                 }\r
590                         }\r
591 \r
592                         /* Update the wake time ready for the next call. */\r
593                         *pxPreviousWakeTime = xTimeToWake;\r
594 \r
595                         if( xShouldDelay )\r
596                         {\r
597                                 traceTASK_DELAY_UNTIL();\r
598 \r
599                                 /* We must remove ourselves from the ready list before adding\r
600                                 ourselves to the blocked list as the same list item is used for\r
601                                 both lists. */\r
602                                 vListRemove( ( xListItem * ) &( pxCurrentTCB->xGenericListItem ) );\r
603 \r
604                                 /* The list item will be inserted in wake time order. */\r
605                                 listSET_LIST_ITEM_VALUE( &( pxCurrentTCB->xGenericListItem ), xTimeToWake );\r
606 \r
607                                 if( xTimeToWake < xTickCount )\r
608                                 {\r
609                                         /* Wake time has overflowed.  Place this item in the\r
610                                         overflow list. */\r
611                                         vListInsert( ( xList * ) pxOverflowDelayedTaskList, ( xListItem * ) &( pxCurrentTCB->xGenericListItem ) );\r
612                                 }\r
613                                 else\r
614                                 {\r
615                                         /* The wake time has not overflowed, so we can use the\r
616                                         current block list. */\r
617                                         vListInsert( ( xList * ) pxDelayedTaskList, ( xListItem * ) &( pxCurrentTCB->xGenericListItem ) );\r
618                                 }\r
619                         }\r
620                 }\r
621                 xAlreadyYielded = xTaskResumeAll();\r
622 \r
623                 /* Force a reschedule if xTaskResumeAll has not already done so, we may\r
624                 have put ourselves to sleep. */\r
625                 if( !xAlreadyYielded )\r
626                 {\r
627                         taskYIELD();\r
628                 }\r
629         }\r
630 \r
631 #endif\r
632 /*-----------------------------------------------------------*/\r
633 \r
634 #if ( INCLUDE_vTaskDelay == 1 )\r
635 \r
636         void vTaskDelay( portTickType xTicksToDelay )\r
637         {\r
638         portTickType xTimeToWake;\r
639         signed portBASE_TYPE xAlreadyYielded = pdFALSE;\r
640 \r
641                 /* A delay time of zero just forces a reschedule. */\r
642                 if( xTicksToDelay > ( portTickType ) 0 )\r
643                 {\r
644                         vTaskSuspendAll();\r
645                         {\r
646                                 traceTASK_DELAY();\r
647 \r
648                                 /* A task that is removed from the event list while the\r
649                                 scheduler is suspended will not get placed in the ready\r
650                                 list or removed from the blocked list until the scheduler\r
651                                 is resumed.\r
652 \r
653                                 This task cannot be in an event list as it is the currently\r
654                                 executing task. */\r
655 \r
656                                 /* Calculate the time to wake - this may overflow but this is\r
657                                 not a problem. */\r
658                                 xTimeToWake = xTickCount + xTicksToDelay;\r
659 \r
660                                 /* We must remove ourselves from the ready list before adding\r
661                                 ourselves to the blocked list as the same list item is used for\r
662                                 both lists. */\r
663                                 vListRemove( ( xListItem * ) &( pxCurrentTCB->xGenericListItem ) );\r
664 \r
665                                 /* The list item will be inserted in wake time order. */\r
666                                 listSET_LIST_ITEM_VALUE( &( pxCurrentTCB->xGenericListItem ), xTimeToWake );\r
667 \r
668                                 if( xTimeToWake < xTickCount )\r
669                                 {\r
670                                         /* Wake time has overflowed.  Place this item in the\r
671                                         overflow list. */\r
672                                         vListInsert( ( xList * ) pxOverflowDelayedTaskList, ( xListItem * ) &( pxCurrentTCB->xGenericListItem ) );\r
673                                 }\r
674                                 else\r
675                                 {\r
676                                         /* The wake time has not overflowed, so we can use the\r
677                                         current block list. */\r
678                                         vListInsert( ( xList * ) pxDelayedTaskList, ( xListItem * ) &( pxCurrentTCB->xGenericListItem ) );\r
679                                 }\r
680                         }\r
681                         xAlreadyYielded = xTaskResumeAll();\r
682                 }\r
683 \r
684                 /* Force a reschedule if xTaskResumeAll has not already done so, we may\r
685                 have put ourselves to sleep. */\r
686                 if( !xAlreadyYielded )\r
687                 {\r
688                         taskYIELD();\r
689                 }\r
690         }\r
691 \r
692 #endif\r
693 /*-----------------------------------------------------------*/\r
694 \r
695 #if ( INCLUDE_uxTaskPriorityGet == 1 )\r
696 \r
697         unsigned portBASE_TYPE uxTaskPriorityGet( xTaskHandle pxTask )\r
698         {\r
699         tskTCB *pxTCB;\r
700         unsigned portBASE_TYPE uxReturn;\r
701 \r
702                 taskENTER_CRITICAL();\r
703                 {\r
704                         /* If null is passed in here then we are changing the\r
705                         priority of the calling function. */\r
706                         pxTCB = prvGetTCBFromHandle( pxTask );\r
707                         uxReturn = pxTCB->uxPriority;\r
708                 }\r
709                 taskEXIT_CRITICAL();\r
710 \r
711                 return uxReturn;\r
712         }\r
713 \r
714 #endif\r
715 /*-----------------------------------------------------------*/\r
716 \r
717 #if ( INCLUDE_vTaskPrioritySet == 1 )\r
718 \r
719         void vTaskPrioritySet( xTaskHandle pxTask, unsigned portBASE_TYPE uxNewPriority )\r
720         {\r
721         tskTCB *pxTCB;\r
722         unsigned portBASE_TYPE uxCurrentPriority, xYieldRequired = pdFALSE;\r
723 \r
724                 /* Ensure the new priority is valid. */\r
725                 if( uxNewPriority >= configMAX_PRIORITIES )\r
726                 {\r
727                         uxNewPriority = configMAX_PRIORITIES - 1;\r
728                 }\r
729 \r
730                 taskENTER_CRITICAL();\r
731                 {\r
732                         if( pxTask == pxCurrentTCB )\r
733                         {\r
734                                 pxTask = NULL;\r
735                         }\r
736 \r
737                         /* If null is passed in here then we are changing the\r
738                         priority of the calling function. */\r
739                         pxTCB = prvGetTCBFromHandle( pxTask );\r
740 \r
741                         traceTASK_PRIORITY_SET( pxTask, uxNewPriority );\r
742 \r
743                         #if ( configUSE_MUTEXES == 1 )\r
744                         {\r
745                                 uxCurrentPriority = pxTCB->uxBasePriority;\r
746                         }\r
747                         #else\r
748                         {\r
749                                 uxCurrentPriority = pxTCB->uxPriority;\r
750                         }\r
751                         #endif\r
752 \r
753                         if( uxCurrentPriority != uxNewPriority )\r
754                         {\r
755                                 /* The priority change may have readied a task of higher\r
756                                 priority than the calling task. */\r
757                                 if( uxNewPriority > uxCurrentPriority )\r
758                                 {\r
759                                         if( pxTask != NULL )\r
760                                         {\r
761                                                 /* The priority of another task is being raised.  If we\r
762                                                 were raising the priority of the currently running task\r
763                                                 there would be no need to switch as it must have already\r
764                                                 been the highest priority task. */\r
765                                                 xYieldRequired = pdTRUE;\r
766                                         }\r
767                                 }\r
768                                 else if( pxTask == NULL )\r
769                                 {\r
770                                         /* Setting our own priority down means there may now be another\r
771                                         task of higher priority that is ready to execute. */\r
772                                         xYieldRequired = pdTRUE;\r
773                                 }\r
774 \r
775 \r
776 \r
777                                 #if ( configUSE_MUTEXES == 1 )\r
778                                 {\r
779                                         /* Only change the priority being used if the task is not\r
780                                         currently using an inherited priority. */\r
781                                         if( pxTCB->uxBasePriority == pxTCB->uxPriority )\r
782                                         {\r
783                                                 pxTCB->uxPriority = uxNewPriority;\r
784                                         }\r
785 \r
786                                         /* The base priority gets set whatever. */\r
787                                         pxTCB->uxBasePriority = uxNewPriority;\r
788                                 }\r
789                                 #else\r
790                                 {\r
791                                         pxTCB->uxPriority = uxNewPriority;\r
792                                 }\r
793                                 #endif\r
794 \r
795                                 listSET_LIST_ITEM_VALUE( &( pxTCB->xEventListItem ), ( configMAX_PRIORITIES - ( portTickType ) uxNewPriority ) );\r
796 \r
797                                 /* If the task is in the blocked or suspended list we need do\r
798                                 nothing more than change it's priority variable. However, if\r
799                                 the task is in a ready list it needs to be removed and placed\r
800                                 in the queue appropriate to its new priority. */\r
801                                 if( listIS_CONTAINED_WITHIN( &( pxReadyTasksLists[ uxCurrentPriority ] ), &( pxTCB->xGenericListItem ) ) )\r
802                                 {\r
803                                         /* The task is currently in its ready list - remove before adding\r
804                                         it to it's new ready list.  As we are in a critical section we\r
805                                         can do this even if the scheduler is suspended. */\r
806                                         vListRemove( &( pxTCB->xGenericListItem ) );\r
807                                         prvAddTaskToReadyQueue( pxTCB );\r
808                                 }\r
809 \r
810                                 if( xYieldRequired == pdTRUE )\r
811                                 {\r
812                                         taskYIELD();\r
813                                 }\r
814                         }\r
815                 }\r
816                 taskEXIT_CRITICAL();\r
817         }\r
818 \r
819 #endif\r
820 /*-----------------------------------------------------------*/\r
821 \r
822 #if ( INCLUDE_vTaskSuspend == 1 )\r
823 \r
824         void vTaskSuspend( xTaskHandle pxTaskToSuspend )\r
825         {\r
826         tskTCB *pxTCB;\r
827 \r
828                 taskENTER_CRITICAL();\r
829                 {\r
830                         /* Ensure a yield is performed if the current task is being\r
831                         suspended. */\r
832                         if( pxTaskToSuspend == pxCurrentTCB )\r
833                         {\r
834                                 pxTaskToSuspend = NULL;\r
835                         }\r
836 \r
837                         /* If null is passed in here then we are suspending ourselves. */\r
838                         pxTCB = prvGetTCBFromHandle( pxTaskToSuspend );\r
839 \r
840                         traceTASK_SUSPEND( pxTCB );\r
841 \r
842                         /* Remove task from the ready/delayed list and place in the     suspended list. */\r
843                         vListRemove( &( pxTCB->xGenericListItem ) );\r
844 \r
845                         /* Is the task waiting on an event also? */\r
846                         if( pxTCB->xEventListItem.pvContainer )\r
847                         {\r
848                                 vListRemove( &( pxTCB->xEventListItem ) );\r
849                         }\r
850 \r
851                         vListInsertEnd( ( xList * ) &xSuspendedTaskList, &( pxTCB->xGenericListItem ) );\r
852                 }\r
853                 taskEXIT_CRITICAL();\r
854 \r
855                 /* We may have just suspended the current task. */\r
856                 if( ( void * ) pxTaskToSuspend == NULL )\r
857                 {\r
858                         taskYIELD();\r
859                 }\r
860         }\r
861 \r
862 #endif\r
863 /*-----------------------------------------------------------*/\r
864 \r
865 #if ( INCLUDE_vTaskSuspend == 1 )\r
866 \r
867         signed portBASE_TYPE xTaskIsTaskSuspended( xTaskHandle xTask )\r
868         {\r
869         portBASE_TYPE xReturn = pdFALSE;\r
870         const tskTCB * const pxTCB = ( tskTCB * ) xTask;\r
871 \r
872                 /* Is the task we are attempting to resume actually in the\r
873                 suspended list? */\r
874                 if( listIS_CONTAINED_WITHIN( &xSuspendedTaskList, &( pxTCB->xGenericListItem ) ) != pdFALSE )\r
875                 {\r
876                         /* Has the task already been resumed from within an ISR? */\r
877                         if( listIS_CONTAINED_WITHIN( &xPendingReadyList, &( pxTCB->xEventListItem ) ) != pdTRUE )\r
878                         {\r
879                                 /* Is it in the suspended list because it is in the\r
880                                 Suspended state?  It is possible to be in the suspended\r
881                                 list because it is blocked on a task with no timeout\r
882                                 specified. */\r
883                                 if( listIS_CONTAINED_WITHIN( NULL, &( pxTCB->xEventListItem ) ) == pdTRUE )\r
884                                 {\r
885                                         xReturn = pdTRUE;\r
886                                 }\r
887                         }\r
888                 }\r
889 \r
890                 return xReturn;\r
891         }\r
892 \r
893 #endif\r
894 /*-----------------------------------------------------------*/\r
895 \r
896 #if ( INCLUDE_vTaskSuspend == 1 )\r
897 \r
898         void vTaskResume( xTaskHandle pxTaskToResume )\r
899         {\r
900         tskTCB *pxTCB;\r
901 \r
902                 /* Remove the task from whichever list it is currently in, and place\r
903                 it in the ready list. */\r
904                 pxTCB = ( tskTCB * ) pxTaskToResume;\r
905 \r
906                 /* The parameter cannot be NULL as it is impossible to resume the\r
907                 currently executing task. */\r
908                 if( ( pxTCB != NULL ) && ( pxTCB != pxCurrentTCB ) )\r
909                 {\r
910                         taskENTER_CRITICAL();\r
911                         {\r
912                                 if( xTaskIsTaskSuspended( pxTCB ) == pdTRUE )\r
913                                 {\r
914                                         traceTASK_RESUME( pxTCB );\r
915 \r
916                                         /* As we are in a critical section we can access the ready\r
917                                         lists even if the scheduler is suspended. */\r
918                                         vListRemove(  &( pxTCB->xGenericListItem ) );\r
919                                         prvAddTaskToReadyQueue( pxTCB );\r
920 \r
921                                         /* We may have just resumed a higher priority task. */\r
922                                         if( pxTCB->uxPriority >= pxCurrentTCB->uxPriority )\r
923                                         {\r
924                                                 /* This yield may not cause the task just resumed to run, but\r
925                                                 will leave the lists in the correct state for the next yield. */\r
926                                                 taskYIELD();\r
927                                         }\r
928                                 }\r
929                         }\r
930                         taskEXIT_CRITICAL();\r
931                 }\r
932         }\r
933 \r
934 #endif\r
935 \r
936 /*-----------------------------------------------------------*/\r
937 \r
938 #if ( ( INCLUDE_xTaskResumeFromISR == 1 ) && ( INCLUDE_vTaskSuspend == 1 ) )\r
939 \r
940         portBASE_TYPE xTaskResumeFromISR( xTaskHandle pxTaskToResume )\r
941         {\r
942         portBASE_TYPE xYieldRequired = pdFALSE;\r
943         tskTCB *pxTCB;\r
944 \r
945                 pxTCB = ( tskTCB * ) pxTaskToResume;\r
946 \r
947                 if( xTaskIsTaskSuspended( pxTCB ) == pdTRUE )\r
948                 {\r
949                         traceTASK_RESUME_FROM_ISR( pxTCB );\r
950 \r
951                         if( uxSchedulerSuspended == ( unsigned portBASE_TYPE ) pdFALSE )\r
952                         {\r
953                                 xYieldRequired = ( pxTCB->uxPriority >= pxCurrentTCB->uxPriority );\r
954                                 vListRemove(  &( pxTCB->xGenericListItem ) );\r
955                                 prvAddTaskToReadyQueue( pxTCB );\r
956                         }\r
957                         else\r
958                         {\r
959                                 /* We cannot access the delayed or ready lists, so will hold this\r
960                                 task pending until the scheduler is resumed, at which point a\r
961                                 yield will be performed if necessary. */\r
962                                 vListInsertEnd( ( xList * ) &( xPendingReadyList ), &( pxTCB->xEventListItem ) );\r
963                         }\r
964                 }\r
965 \r
966                 return xYieldRequired;\r
967         }\r
968 \r
969 #endif\r
970 \r
971 \r
972 \r
973 \r
974 /*-----------------------------------------------------------\r
975  * PUBLIC SCHEDULER CONTROL documented in task.h\r
976  *----------------------------------------------------------*/\r
977 \r
978 \r
979 void vTaskStartScheduler( void )\r
980 {\r
981 portBASE_TYPE xReturn;\r
982 \r
983         /* Add the idle task at the lowest priority. */\r
984         xReturn = xTaskCreate( prvIdleTask, ( signed portCHAR * ) "IDLE", tskIDLE_STACK_SIZE, ( void * ) NULL, tskIDLE_PRIORITY, ( xTaskHandle * ) NULL );\r
985 \r
986         if( xReturn == pdPASS )\r
987         {\r
988                 /* Interrupts are turned off here, to ensure a tick does not occur\r
989                 before or during the call to xPortStartScheduler().  The stacks of\r
990                 the created tasks contain a status word with interrupts switched on\r
991                 so interrupts will automatically get re-enabled when the first task\r
992                 starts to run.\r
993 \r
994                 STEPPING THROUGH HERE USING A DEBUGGER CAN CAUSE BIG PROBLEMS IF THE\r
995                 DEBUGGER ALLOWS INTERRUPTS TO BE PROCESSED. */\r
996                 portDISABLE_INTERRUPTS();\r
997 \r
998                 xSchedulerRunning = pdTRUE;\r
999                 xTickCount = ( portTickType ) 0;\r
1000 \r
1001                 /* If configGENERATE_RUN_TIME_STATS is defined then the following\r
1002                 macro must be defined to configure the timer/counter used to generate\r
1003                 the run time counter time base. */\r
1004                 portCONFIGURE_TIMER_FOR_RUN_TIME_STATS();\r
1005 \r
1006                 /* Setting up the timer tick is hardware specific and thus in the\r
1007                 portable interface. */\r
1008                 if( xPortStartScheduler() )\r
1009                 {\r
1010                         /* Should not reach here as if the scheduler is running the\r
1011                         function will not return. */\r
1012                 }\r
1013                 else\r
1014                 {\r
1015                         /* Should only reach here if a task calls xTaskEndScheduler(). */\r
1016                 }\r
1017         }\r
1018 }\r
1019 /*-----------------------------------------------------------*/\r
1020 \r
1021 void vTaskEndScheduler( void )\r
1022 {\r
1023         /* Stop the scheduler interrupts and call the portable scheduler end\r
1024         routine so the original ISRs can be restored if necessary.  The port\r
1025         layer must ensure interrupts enable     bit is left in the correct state. */\r
1026         portDISABLE_INTERRUPTS();\r
1027         xSchedulerRunning = pdFALSE;\r
1028         vPortEndScheduler();\r
1029 }\r
1030 /*----------------------------------------------------------*/\r
1031 \r
1032 void vTaskSuspendAll( void )\r
1033 {\r
1034         /* A critical section is not required as the variable is of type\r
1035         portBASE_TYPE. */\r
1036         ++uxSchedulerSuspended;\r
1037 }\r
1038 /*----------------------------------------------------------*/\r
1039 \r
1040 signed portBASE_TYPE xTaskResumeAll( void )\r
1041 {\r
1042 register tskTCB *pxTCB;\r
1043 signed portBASE_TYPE xAlreadyYielded = pdFALSE;\r
1044 \r
1045         /* It is possible that an ISR caused a task to be removed from an event\r
1046         list while the scheduler was suspended.  If this was the case then the\r
1047         removed task will have been added to the xPendingReadyList.  Once the\r
1048         scheduler has been resumed it is safe to move all the pending ready\r
1049         tasks from this list into their appropriate ready list. */\r
1050         portENTER_CRITICAL();\r
1051         {\r
1052                 --uxSchedulerSuspended;\r
1053 \r
1054                 if( uxSchedulerSuspended == ( unsigned portBASE_TYPE ) pdFALSE )\r
1055                 {\r
1056                         if( uxCurrentNumberOfTasks > ( unsigned portBASE_TYPE ) 0 )\r
1057                         {\r
1058                                 portBASE_TYPE xYieldRequired = pdFALSE;\r
1059 \r
1060                                 /* Move any readied tasks from the pending list into the\r
1061                                 appropriate ready list. */\r
1062                                 while( ( pxTCB = ( tskTCB * ) listGET_OWNER_OF_HEAD_ENTRY(  ( ( xList * ) &xPendingReadyList ) ) ) != NULL )\r
1063                                 {\r
1064                                         vListRemove( &( pxTCB->xEventListItem ) );\r
1065                                         vListRemove( &( pxTCB->xGenericListItem ) );\r
1066                                         prvAddTaskToReadyQueue( pxTCB );\r
1067 \r
1068                                         /* If we have moved a task that has a priority higher than\r
1069                                         the current task then we should yield. */\r
1070                                         if( pxTCB->uxPriority >= pxCurrentTCB->uxPriority )\r
1071                                         {\r
1072                                                 xYieldRequired = pdTRUE;\r
1073                                         }\r
1074                                 }\r
1075 \r
1076                                 /* If any ticks occurred while the scheduler was suspended then\r
1077                                 they should be processed now.  This ensures the tick count does not\r
1078                                 slip, and that any delayed tasks are resumed at the correct time. */\r
1079                                 if( uxMissedTicks > ( unsigned portBASE_TYPE ) 0 )\r
1080                                 {\r
1081                                         while( uxMissedTicks > ( unsigned portBASE_TYPE ) 0 )\r
1082                                         {\r
1083                                                 vTaskIncrementTick();\r
1084                                                 --uxMissedTicks;\r
1085                                         }\r
1086 \r
1087                                         /* As we have processed some ticks it is appropriate to yield\r
1088                                         to ensure the highest priority task that is ready to run is\r
1089                                         the task actually running. */\r
1090                                         #if configUSE_PREEMPTION == 1\r
1091                                         {\r
1092                                                 xYieldRequired = pdTRUE;\r
1093                                         }\r
1094                                         #endif\r
1095                                 }\r
1096 \r
1097                                 if( ( xYieldRequired == pdTRUE ) || ( xMissedYield == pdTRUE ) )\r
1098                                 {\r
1099                                         xAlreadyYielded = pdTRUE;\r
1100                                         xMissedYield = pdFALSE;\r
1101                                         taskYIELD();\r
1102                                 }\r
1103                         }\r
1104                 }\r
1105         }\r
1106         portEXIT_CRITICAL();\r
1107 \r
1108         return xAlreadyYielded;\r
1109 }\r
1110 \r
1111 \r
1112 \r
1113 \r
1114 \r
1115 \r
1116 /*-----------------------------------------------------------\r
1117  * PUBLIC TASK UTILITIES documented in task.h\r
1118  *----------------------------------------------------------*/\r
1119 \r
1120 \r
1121 \r
1122 portTickType xTaskGetTickCount( void )\r
1123 {\r
1124 portTickType xTicks;\r
1125 \r
1126         /* Critical section required if running on a 16 bit processor. */\r
1127         taskENTER_CRITICAL();\r
1128         {\r
1129                 xTicks = xTickCount;\r
1130         }\r
1131         taskEXIT_CRITICAL();\r
1132 \r
1133         return xTicks;\r
1134 }\r
1135 /*-----------------------------------------------------------*/\r
1136 \r
1137 unsigned portBASE_TYPE uxTaskGetNumberOfTasks( void )\r
1138 {\r
1139         /* A critical section is not required because the variables are of type\r
1140         portBASE_TYPE. */\r
1141         return uxCurrentNumberOfTasks;\r
1142 }\r
1143 /*-----------------------------------------------------------*/\r
1144 \r
1145 #if ( configUSE_TRACE_FACILITY == 1 )\r
1146 \r
1147         void vTaskList( signed portCHAR *pcWriteBuffer )\r
1148         {\r
1149         unsigned portBASE_TYPE uxQueue;\r
1150 \r
1151                 /* This is a VERY costly function that should be used for debug only.\r
1152                 It leaves interrupts disabled for a LONG time. */\r
1153 \r
1154         vTaskSuspendAll();\r
1155                 {\r
1156                         /* Run through all the lists that could potentially contain a TCB and\r
1157                         report the task name, state and stack high water mark. */\r
1158 \r
1159                         pcWriteBuffer[ 0 ] = ( signed portCHAR ) 0x00;\r
1160                         strcat( ( portCHAR * ) pcWriteBuffer, ( const portCHAR * ) "\r\n" );\r
1161 \r
1162                         uxQueue = uxTopUsedPriority + 1;\r
1163 \r
1164                         do\r
1165                         {\r
1166                                 uxQueue--;\r
1167 \r
1168                                 if( !listLIST_IS_EMPTY( &( pxReadyTasksLists[ uxQueue ] ) ) )\r
1169                                 {\r
1170                                         prvListTaskWithinSingleList( pcWriteBuffer, ( xList * ) &( pxReadyTasksLists[ uxQueue ] ), tskREADY_CHAR );\r
1171                                 }\r
1172                         }while( uxQueue > ( unsigned portSHORT ) tskIDLE_PRIORITY );\r
1173 \r
1174                         if( !listLIST_IS_EMPTY( pxDelayedTaskList ) )\r
1175                         {\r
1176                                 prvListTaskWithinSingleList( pcWriteBuffer, ( xList * ) pxDelayedTaskList, tskBLOCKED_CHAR );\r
1177                         }\r
1178 \r
1179                         if( !listLIST_IS_EMPTY( pxOverflowDelayedTaskList ) )\r
1180                         {\r
1181                                 prvListTaskWithinSingleList( pcWriteBuffer, ( xList * ) pxOverflowDelayedTaskList, tskBLOCKED_CHAR );\r
1182                         }\r
1183 \r
1184                         #if( INCLUDE_vTaskDelete == 1 )\r
1185                         {\r
1186                                 if( !listLIST_IS_EMPTY( &xTasksWaitingTermination ) )\r
1187                                 {\r
1188                                         prvListTaskWithinSingleList( pcWriteBuffer, ( xList * ) &xTasksWaitingTermination, tskDELETED_CHAR );\r
1189                                 }\r
1190                         }\r
1191                         #endif\r
1192 \r
1193                         #if ( INCLUDE_vTaskSuspend == 1 )\r
1194                         {\r
1195                                 if( !listLIST_IS_EMPTY( &xSuspendedTaskList ) )\r
1196                                 {\r
1197                                         prvListTaskWithinSingleList( pcWriteBuffer, ( xList * ) &xSuspendedTaskList, tskSUSPENDED_CHAR );\r
1198                                 }\r
1199                         }\r
1200                         #endif\r
1201                 }\r
1202         xTaskResumeAll();\r
1203         }\r
1204 \r
1205 #endif\r
1206 /*----------------------------------------------------------*/\r
1207 \r
1208 #if ( configGENERATE_RUN_TIME_STATS == 1 )\r
1209 \r
1210         void vTaskGetRunTimeStats( signed portCHAR *pcWriteBuffer )\r
1211         {\r
1212         unsigned portBASE_TYPE uxQueue;\r
1213         unsigned portLONG ulTotalRunTime = portGET_RUN_TIME_COUNTER_VALUE();\r
1214 \r
1215                 /* This is a VERY costly function that should be used for debug only.\r
1216                 It leaves interrupts disabled for a LONG time. */\r
1217 \r
1218         vTaskSuspendAll();\r
1219                 {\r
1220                         /* Run through all the lists that could potentially contain a TCB,\r
1221                         generating a table of run timer percentages in the provided\r
1222                         buffer. */\r
1223 \r
1224                         pcWriteBuffer[ 0 ] = ( signed portCHAR ) 0x00;\r
1225                         strcat( ( portCHAR * ) pcWriteBuffer, ( const portCHAR * ) "\r\n" );\r
1226 \r
1227                         uxQueue = uxTopUsedPriority + 1;\r
1228 \r
1229                         do\r
1230                         {\r
1231                                 uxQueue--;\r
1232 \r
1233                                 if( !listLIST_IS_EMPTY( &( pxReadyTasksLists[ uxQueue ] ) ) )\r
1234                                 {\r
1235                                         prvGenerateRunTimeStatsForTasksInList( pcWriteBuffer, ( xList * ) &( pxReadyTasksLists[ uxQueue ] ), ulTotalRunTime );\r
1236                                 }\r
1237                         }while( uxQueue > ( unsigned portSHORT ) tskIDLE_PRIORITY );\r
1238 \r
1239                         if( !listLIST_IS_EMPTY( pxDelayedTaskList ) )\r
1240                         {\r
1241                                 prvGenerateRunTimeStatsForTasksInList( pcWriteBuffer, ( xList * ) pxDelayedTaskList, ulTotalRunTime );\r
1242                         }\r
1243 \r
1244                         if( !listLIST_IS_EMPTY( pxOverflowDelayedTaskList ) )\r
1245                         {\r
1246                                 prvGenerateRunTimeStatsForTasksInList( pcWriteBuffer, ( xList * ) pxOverflowDelayedTaskList, ulTotalRunTime );\r
1247                         }\r
1248 \r
1249                         #if ( INCLUDE_vTaskDelete == 1 )\r
1250                         {\r
1251                                 if( !listLIST_IS_EMPTY( &xTasksWaitingTermination ) )\r
1252                                 {\r
1253                                         prvGenerateRunTimeStatsForTasksInList( pcWriteBuffer, ( xList * ) &xTasksWaitingTermination, ulTotalRunTime );\r
1254                                 }\r
1255                         }\r
1256                         #endif\r
1257 \r
1258                         #if ( INCLUDE_vTaskSuspend == 1 )\r
1259                         {\r
1260                                 if( !listLIST_IS_EMPTY( &xSuspendedTaskList ) )\r
1261                                 {\r
1262                                         prvGenerateRunTimeStatsForTasksInList( pcWriteBuffer, ( xList * ) &xSuspendedTaskList, ulTotalRunTime );\r
1263                                 }\r
1264                         }\r
1265                         #endif\r
1266                 }\r
1267         xTaskResumeAll();\r
1268         }\r
1269 \r
1270 #endif\r
1271 /*----------------------------------------------------------*/\r
1272 \r
1273 #if ( configUSE_TRACE_FACILITY == 1 )\r
1274 \r
1275         void vTaskStartTrace( signed portCHAR * pcBuffer, unsigned portLONG ulBufferSize )\r
1276         {\r
1277                 portENTER_CRITICAL();\r
1278                 {\r
1279                         pcTraceBuffer = ( signed portCHAR * )pcBuffer;\r
1280                         pcTraceBufferStart = pcBuffer;\r
1281                         pcTraceBufferEnd = pcBuffer + ( ulBufferSize - tskSIZE_OF_EACH_TRACE_LINE );\r
1282                         xTracing = pdTRUE;\r
1283                 }\r
1284                 portEXIT_CRITICAL();\r
1285         }\r
1286 \r
1287 #endif\r
1288 /*----------------------------------------------------------*/\r
1289 \r
1290 #if ( configUSE_TRACE_FACILITY == 1 )\r
1291 \r
1292         unsigned portLONG ulTaskEndTrace( void )\r
1293         {\r
1294         unsigned portLONG ulBufferLength;\r
1295 \r
1296                 portENTER_CRITICAL();\r
1297                         xTracing = pdFALSE;\r
1298                 portEXIT_CRITICAL();\r
1299 \r
1300                 ulBufferLength = ( unsigned portLONG ) ( pcTraceBuffer - pcTraceBufferStart );\r
1301 \r
1302                 return ulBufferLength;\r
1303         }\r
1304 \r
1305 #endif\r
1306 \r
1307 \r
1308 \r
1309 /*-----------------------------------------------------------\r
1310  * SCHEDULER INTERNALS AVAILABLE FOR PORTING PURPOSES\r
1311  * documented in task.h\r
1312  *----------------------------------------------------------*/\r
1313 \r
1314 \r
1315 void vTaskIncrementTick( void )\r
1316 {\r
1317         /* Called by the portable layer each time a tick interrupt occurs.\r
1318         Increments the tick then checks to see if the new tick value will cause any\r
1319         tasks to be unblocked. */\r
1320         if( uxSchedulerSuspended == ( unsigned portBASE_TYPE ) pdFALSE )\r
1321         {\r
1322                 ++xTickCount;\r
1323                 if( xTickCount == ( portTickType ) 0 )\r
1324                 {\r
1325                         xList *pxTemp;\r
1326 \r
1327                         /* Tick count has overflowed so we need to swap the delay lists.\r
1328                         If there are any items in pxDelayedTaskList here then there is\r
1329                         an error! */\r
1330                         pxTemp = pxDelayedTaskList;\r
1331                         pxDelayedTaskList = pxOverflowDelayedTaskList;\r
1332                         pxOverflowDelayedTaskList = pxTemp;\r
1333             xNumOfOverflows++;\r
1334                 }\r
1335 \r
1336                 /* See if this tick has made a timeout expire. */\r
1337                 prvCheckDelayedTasks();\r
1338         }\r
1339         else\r
1340         {\r
1341                 ++uxMissedTicks;\r
1342 \r
1343                 /* The tick hook gets called at regular intervals, even if the\r
1344                 scheduler is locked. */\r
1345                 #if ( configUSE_TICK_HOOK == 1 )\r
1346                 {\r
1347                         extern void vApplicationTickHook( void );\r
1348 \r
1349                         vApplicationTickHook();\r
1350                 }\r
1351                 #endif\r
1352         }\r
1353 \r
1354         #if ( configUSE_TICK_HOOK == 1 )\r
1355         {\r
1356                 extern void vApplicationTickHook( void );\r
1357 \r
1358                 /* Guard against the tick hook being called when the missed tick\r
1359                 count is being unwound (when the scheduler is being unlocked. */\r
1360                 if( uxMissedTicks == 0 )\r
1361                 {\r
1362                         vApplicationTickHook();\r
1363                 }\r
1364         }\r
1365         #endif\r
1366 \r
1367         traceTASK_INCREMENT_TICK( xTickCount );\r
1368 }\r
1369 /*-----------------------------------------------------------*/\r
1370 \r
1371 #if ( ( INCLUDE_vTaskCleanUpResources == 1 ) && ( INCLUDE_vTaskSuspend == 1 ) )\r
1372 \r
1373         void vTaskCleanUpResources( void )\r
1374         {\r
1375         unsigned portSHORT usQueue;\r
1376         volatile tskTCB *pxTCB;\r
1377 \r
1378                 usQueue = ( unsigned portSHORT ) uxTopUsedPriority + ( unsigned portSHORT ) 1;\r
1379 \r
1380                 /* Remove any TCB's from the ready queues. */\r
1381                 do\r
1382                 {\r
1383                         usQueue--;\r
1384 \r
1385                         while( !listLIST_IS_EMPTY( &( pxReadyTasksLists[ usQueue ] ) ) )\r
1386                         {\r
1387                                 listGET_OWNER_OF_NEXT_ENTRY( pxTCB, &( pxReadyTasksLists[ usQueue ] ) );\r
1388                                 vListRemove( ( xListItem * ) &( pxTCB->xGenericListItem ) );\r
1389 \r
1390                                 prvDeleteTCB( ( tskTCB * ) pxTCB );\r
1391                         }\r
1392                 }while( usQueue > ( unsigned portSHORT ) tskIDLE_PRIORITY );\r
1393 \r
1394                 /* Remove any TCB's from the delayed queue. */\r
1395                 while( !listLIST_IS_EMPTY( &xDelayedTaskList1 ) )\r
1396                 {\r
1397                         listGET_OWNER_OF_NEXT_ENTRY( pxTCB, &xDelayedTaskList1 );\r
1398                         vListRemove( ( xListItem * ) &( pxTCB->xGenericListItem ) );\r
1399 \r
1400                         prvDeleteTCB( ( tskTCB * ) pxTCB );\r
1401                 }\r
1402 \r
1403                 /* Remove any TCB's from the overflow delayed queue. */\r
1404                 while( !listLIST_IS_EMPTY( &xDelayedTaskList2 ) )\r
1405                 {\r
1406                         listGET_OWNER_OF_NEXT_ENTRY( pxTCB, &xDelayedTaskList2 );\r
1407                         vListRemove( ( xListItem * ) &( pxTCB->xGenericListItem ) );\r
1408 \r
1409                         prvDeleteTCB( ( tskTCB * ) pxTCB );\r
1410                 }\r
1411 \r
1412                 while( !listLIST_IS_EMPTY( &xSuspendedTaskList ) )\r
1413                 {\r
1414                         listGET_OWNER_OF_NEXT_ENTRY( pxTCB, &xSuspendedTaskList );\r
1415                         vListRemove( ( xListItem * ) &( pxTCB->xGenericListItem ) );\r
1416 \r
1417                         prvDeleteTCB( ( tskTCB * ) pxTCB );\r
1418                 }\r
1419         }\r
1420 \r
1421 #endif\r
1422 /*-----------------------------------------------------------*/\r
1423 \r
1424 #if ( configUSE_APPLICATION_TASK_TAG == 1 )\r
1425 \r
1426         void vTaskSetApplicationTaskTag( xTaskHandle xTask, pdTASK_HOOK_CODE pxTagValue )\r
1427         {\r
1428         tskTCB *xTCB;\r
1429 \r
1430                 /* If xTask is NULL then we are setting our own task hook. */\r
1431                 if( xTask == NULL )\r
1432                 {\r
1433                         xTCB = ( tskTCB * ) pxCurrentTCB;\r
1434                 }\r
1435                 else\r
1436                 {\r
1437                         xTCB = ( tskTCB * ) xTask;\r
1438                 }\r
1439 \r
1440                 /* Save the hook function in the TCB.  A critical section is required as\r
1441                 the value can be accessed from an interrupt. */\r
1442                 portENTER_CRITICAL();\r
1443                         xTCB->pxTaskTag = pxTagValue;\r
1444                 portEXIT_CRITICAL();\r
1445         }\r
1446 \r
1447 #endif\r
1448 /*-----------------------------------------------------------*/\r
1449 \r
1450 #if ( configUSE_APPLICATION_TASK_TAG == 1 )\r
1451 \r
1452         pdTASK_HOOK_CODE xTaskGetApplicationTaskTag( xTaskHandle xTask )\r
1453         {\r
1454         tskTCB *xTCB;\r
1455         pdTASK_HOOK_CODE xReturn;\r
1456 \r
1457                 /* If xTask is NULL then we are setting our own task hook. */\r
1458                 if( xTask == NULL )\r
1459                 {\r
1460                         xTCB = ( tskTCB * ) pxCurrentTCB;\r
1461                 }\r
1462                 else\r
1463                 {\r
1464                         xTCB = ( tskTCB * ) xTask;\r
1465                 }\r
1466 \r
1467                 /* Save the hook function in the TCB.  A critical section is required as\r
1468                 the value can be accessed from an interrupt. */\r
1469                 portENTER_CRITICAL();\r
1470                         xReturn = xTCB->pxTaskTag;\r
1471                 portEXIT_CRITICAL();\r
1472 \r
1473                 return xReturn;\r
1474         }\r
1475 \r
1476 #endif\r
1477 /*-----------------------------------------------------------*/\r
1478 \r
1479 #if ( configUSE_APPLICATION_TASK_TAG == 1 )\r
1480 \r
1481         portBASE_TYPE xTaskCallApplicationTaskHook( xTaskHandle xTask, void *pvParameter )\r
1482         {\r
1483         tskTCB *xTCB;\r
1484         portBASE_TYPE xReturn;\r
1485 \r
1486                 /* If xTask is NULL then we are calling our own task hook. */\r
1487                 if( xTask == NULL )\r
1488                 {\r
1489                         xTCB = ( tskTCB * ) pxCurrentTCB;\r
1490                 }\r
1491                 else\r
1492                 {\r
1493                         xTCB = ( tskTCB * ) xTask;\r
1494                 }\r
1495 \r
1496                 if( xTCB->pxTaskTag != NULL )\r
1497                 {\r
1498                         xReturn = xTCB->pxTaskTag( pvParameter );\r
1499                 }\r
1500                 else\r
1501                 {\r
1502                         xReturn = pdFAIL;\r
1503                 }\r
1504 \r
1505                 return xReturn;\r
1506         }\r
1507 \r
1508 #endif\r
1509 /*-----------------------------------------------------------*/\r
1510 \r
1511 void vTaskSwitchContext( void )\r
1512 {\r
1513         if( uxSchedulerSuspended != ( unsigned portBASE_TYPE ) pdFALSE )\r
1514         {\r
1515                 /* The scheduler is currently suspended - do not allow a context\r
1516                 switch. */\r
1517                 xMissedYield = pdTRUE;\r
1518                 return;\r
1519         }\r
1520 \r
1521         traceTASK_SWITCHED_OUT();\r
1522 \r
1523         #if ( configGENERATE_RUN_TIME_STATS == 1 )\r
1524         {\r
1525                 unsigned portLONG ulTempCounter = portGET_RUN_TIME_COUNTER_VALUE();\r
1526 \r
1527                         /* Add the amount of time the task has been running to the accumulated\r
1528                         time so far.  The time the task started running was stored in\r
1529                         ulTaskSwitchedInTime.  Note that there is no overflow protection here\r
1530                         so count values are only valid until the timer overflows.  Generally\r
1531                         this will be about 1 hour assuming a 1uS timer increment. */\r
1532                         pxCurrentTCB->ulRunTimeCounter += ( ulTempCounter - ulTaskSwitchedInTime );\r
1533                         ulTaskSwitchedInTime = ulTempCounter;\r
1534         }\r
1535         #endif\r
1536 \r
1537         taskFIRST_CHECK_FOR_STACK_OVERFLOW();\r
1538         taskSECOND_CHECK_FOR_STACK_OVERFLOW();\r
1539 \r
1540         /* Find the highest priority queue that contains ready tasks. */\r
1541         while( listLIST_IS_EMPTY( &( pxReadyTasksLists[ uxTopReadyPriority ] ) ) )\r
1542         {\r
1543                 --uxTopReadyPriority;\r
1544         }\r
1545 \r
1546         /* listGET_OWNER_OF_NEXT_ENTRY walks through the list, so the tasks of the\r
1547         same priority get an equal share of the processor time. */\r
1548         listGET_OWNER_OF_NEXT_ENTRY( pxCurrentTCB, &( pxReadyTasksLists[ uxTopReadyPriority ] ) );\r
1549 \r
1550         traceTASK_SWITCHED_IN();\r
1551         vWriteTraceToBuffer();\r
1552 }\r
1553 /*-----------------------------------------------------------*/\r
1554 \r
1555 void vTaskPlaceOnEventList( const xList * const pxEventList, portTickType xTicksToWait )\r
1556 {\r
1557 portTickType xTimeToWake;\r
1558 \r
1559         /* THIS FUNCTION MUST BE CALLED WITH INTERRUPTS DISABLED OR THE\r
1560         SCHEDULER SUSPENDED. */\r
1561 \r
1562         /* Place the event list item of the TCB in the appropriate event list.\r
1563         This is placed in the list in priority order so the highest priority task\r
1564         is the first to be woken by the event. */\r
1565         vListInsert( ( xList * ) pxEventList, ( xListItem * ) &( pxCurrentTCB->xEventListItem ) );\r
1566 \r
1567         /* We must remove ourselves from the ready list before adding ourselves\r
1568         to the blocked list as the same list item is used for both lists.  We have\r
1569         exclusive access to the ready lists as the scheduler is locked. */\r
1570         vListRemove( ( xListItem * ) &( pxCurrentTCB->xGenericListItem ) );\r
1571 \r
1572 \r
1573         #if ( INCLUDE_vTaskSuspend == 1 )\r
1574         {\r
1575                 if( xTicksToWait == portMAX_DELAY )\r
1576                 {\r
1577                         /* Add ourselves to the suspended task list instead of a delayed task\r
1578                         list to ensure we are not woken by a timing event.  We will block\r
1579                         indefinitely. */\r
1580                         vListInsertEnd( ( xList * ) &xSuspendedTaskList, ( xListItem * ) &( pxCurrentTCB->xGenericListItem ) );\r
1581                 }\r
1582                 else\r
1583                 {\r
1584                         /* Calculate the time at which the task should be woken if the event does\r
1585                         not occur.  This may overflow but this doesn't matter. */\r
1586                         xTimeToWake = xTickCount + xTicksToWait;\r
1587 \r
1588                         listSET_LIST_ITEM_VALUE( &( pxCurrentTCB->xGenericListItem ), xTimeToWake );\r
1589 \r
1590                         if( xTimeToWake < xTickCount )\r
1591                         {\r
1592                                 /* Wake time has overflowed.  Place this item in the overflow list. */\r
1593                                 vListInsert( ( xList * ) pxOverflowDelayedTaskList, ( xListItem * ) &( pxCurrentTCB->xGenericListItem ) );\r
1594                         }\r
1595                         else\r
1596                         {\r
1597                                 /* The wake time has not overflowed, so we can use the current block list. */\r
1598                                 vListInsert( ( xList * ) pxDelayedTaskList, ( xListItem * ) &( pxCurrentTCB->xGenericListItem ) );\r
1599                         }\r
1600                 }\r
1601         }\r
1602         #else\r
1603         {\r
1604                         /* Calculate the time at which the task should be woken if the event does\r
1605                         not occur.  This may overflow but this doesn't matter. */\r
1606                         xTimeToWake = xTickCount + xTicksToWait;\r
1607 \r
1608                         listSET_LIST_ITEM_VALUE( &( pxCurrentTCB->xGenericListItem ), xTimeToWake );\r
1609 \r
1610                         if( xTimeToWake < xTickCount )\r
1611                         {\r
1612                                 /* Wake time has overflowed.  Place this item in the overflow list. */\r
1613                                 vListInsert( ( xList * ) pxOverflowDelayedTaskList, ( xListItem * ) &( pxCurrentTCB->xGenericListItem ) );\r
1614                         }\r
1615                         else\r
1616                         {\r
1617                                 /* The wake time has not overflowed, so we can use the current block list. */\r
1618                                 vListInsert( ( xList * ) pxDelayedTaskList, ( xListItem * ) &( pxCurrentTCB->xGenericListItem ) );\r
1619                         }\r
1620         }\r
1621         #endif\r
1622 }\r
1623 /*-----------------------------------------------------------*/\r
1624 \r
1625 signed portBASE_TYPE xTaskRemoveFromEventList( const xList * const pxEventList )\r
1626 {\r
1627 tskTCB *pxUnblockedTCB;\r
1628 portBASE_TYPE xReturn;\r
1629 \r
1630         /* THIS FUNCTION MUST BE CALLED WITH INTERRUPTS DISABLED OR THE\r
1631         SCHEDULER SUSPENDED.  It can also be called from within an ISR. */\r
1632 \r
1633         /* The event list is sorted in priority order, so we can remove the\r
1634         first in the list, remove the TCB from the delayed list, and add\r
1635         it to the ready list.\r
1636 \r
1637         If an event is for a queue that is locked then this function will never\r
1638         get called - the lock count on the queue will get modified instead.  This\r
1639         means we can always expect exclusive access to the event list here. */\r
1640         pxUnblockedTCB = ( tskTCB * ) listGET_OWNER_OF_HEAD_ENTRY( pxEventList );\r
1641         vListRemove( &( pxUnblockedTCB->xEventListItem ) );\r
1642 \r
1643         if( uxSchedulerSuspended == ( unsigned portBASE_TYPE ) pdFALSE )\r
1644         {\r
1645                 vListRemove( &( pxUnblockedTCB->xGenericListItem ) );\r
1646                 prvAddTaskToReadyQueue( pxUnblockedTCB );\r
1647         }\r
1648         else\r
1649         {\r
1650                 /* We cannot access the delayed or ready lists, so will hold this\r
1651                 task pending until the scheduler is resumed. */\r
1652                 vListInsertEnd( ( xList * ) &( xPendingReadyList ), &( pxUnblockedTCB->xEventListItem ) );\r
1653         }\r
1654 \r
1655         if( pxUnblockedTCB->uxPriority >= pxCurrentTCB->uxPriority )\r
1656         {\r
1657                 /* Return true if the task removed from the event list has\r
1658                 a higher priority than the calling task.  This allows\r
1659                 the calling task to know if it should force a context\r
1660                 switch now. */\r
1661                 xReturn = pdTRUE;\r
1662         }\r
1663         else\r
1664         {\r
1665                 xReturn = pdFALSE;\r
1666         }\r
1667 \r
1668         return xReturn;\r
1669 }\r
1670 /*-----------------------------------------------------------*/\r
1671 \r
1672 void vTaskSetTimeOutState( xTimeOutType * const pxTimeOut )\r
1673 {\r
1674     pxTimeOut->xOverflowCount = xNumOfOverflows;\r
1675     pxTimeOut->xTimeOnEntering = xTickCount;\r
1676 }\r
1677 /*-----------------------------------------------------------*/\r
1678 \r
1679 portBASE_TYPE xTaskCheckForTimeOut( xTimeOutType * const pxTimeOut, portTickType * const pxTicksToWait )\r
1680 {\r
1681 portBASE_TYPE xReturn;\r
1682 \r
1683         portENTER_CRITICAL();\r
1684         {\r
1685                 #if ( INCLUDE_vTaskSuspend == 1 )\r
1686                         /* If INCLUDE_vTaskSuspend is set to 1 and the block time specified is\r
1687                         the maximum block time then the task should block indefinitely, and\r
1688                         therefore never time out. */\r
1689                         if( *pxTicksToWait == portMAX_DELAY )\r
1690                         {\r
1691                                 xReturn = pdFALSE;\r
1692                         }\r
1693                         else /* We are not blocking indefinitely, perform the checks below. */\r
1694                 #endif\r
1695 \r
1696                 if( ( xNumOfOverflows != pxTimeOut->xOverflowCount ) && ( ( portTickType ) xTickCount >= ( portTickType ) pxTimeOut->xTimeOnEntering ) )\r
1697                 {\r
1698                         /* The tick count is greater than the time at which vTaskSetTimeout()\r
1699                         was called, but has also overflowed since vTaskSetTimeOut() was called.\r
1700                         It must have wrapped all the way around and gone past us again. This\r
1701                         passed since vTaskSetTimeout() was called. */\r
1702                         xReturn = pdTRUE;\r
1703                 }\r
1704                 else if( ( ( portTickType ) xTickCount - ( portTickType ) pxTimeOut->xTimeOnEntering ) < ( portTickType ) *pxTicksToWait )\r
1705                 {\r
1706                         /* Not a genuine timeout. Adjust parameters for time remaining. */\r
1707                         *pxTicksToWait -= ( ( portTickType ) xTickCount - ( portTickType ) pxTimeOut->xTimeOnEntering );\r
1708                         vTaskSetTimeOutState( pxTimeOut );\r
1709                         xReturn = pdFALSE;\r
1710                 }\r
1711                 else\r
1712                 {\r
1713                         xReturn = pdTRUE;\r
1714                 }\r
1715         }\r
1716         portEXIT_CRITICAL();\r
1717 \r
1718     return xReturn;\r
1719 }\r
1720 /*-----------------------------------------------------------*/\r
1721 \r
1722 void vTaskMissedYield( void )\r
1723 {\r
1724         xMissedYield = pdTRUE;\r
1725 }\r
1726 \r
1727 /*\r
1728  * -----------------------------------------------------------\r
1729  * The Idle task.\r
1730  * ----------------------------------------------------------\r
1731  *\r
1732  * The portTASK_FUNCTION() macro is used to allow port/compiler specific\r
1733  * language extensions.  The equivalent prototype for this function is:\r
1734  *\r
1735  * void prvIdleTask( void *pvParameters );\r
1736  *\r
1737  */\r
1738 static portTASK_FUNCTION( prvIdleTask, pvParameters )\r
1739 {\r
1740         /* Stop warnings. */\r
1741         ( void ) pvParameters;\r
1742 \r
1743         for( ;; )\r
1744         {\r
1745                 /* See if any tasks have been deleted. */\r
1746                 prvCheckTasksWaitingTermination();\r
1747 \r
1748                 #if ( configUSE_PREEMPTION == 0 )\r
1749                 {\r
1750                         /* If we are not using preemption we keep forcing a task switch to\r
1751                         see if any other task has become available.  If we are using\r
1752                         preemption we don't need to do this as any task becoming available\r
1753                         will automatically get the processor anyway. */\r
1754                         taskYIELD();\r
1755                 }\r
1756                 #endif\r
1757 \r
1758                 #if ( ( configUSE_PREEMPTION == 1 ) && ( configIDLE_SHOULD_YIELD == 1 ) )\r
1759                 {\r
1760                         /* When using preemption tasks of equal priority will be\r
1761                         timesliced.  If a task that is sharing the idle priority is ready\r
1762                         to run then the idle task should yield before the end of the\r
1763                         timeslice.\r
1764 \r
1765                         A critical region is not required here as we are just reading from\r
1766                         the list, and an occasional incorrect value will not matter.  If\r
1767                         the ready list at the idle priority contains more than one task\r
1768                         then a task other than the idle task is ready to execute. */\r
1769                         if( listCURRENT_LIST_LENGTH( &( pxReadyTasksLists[ tskIDLE_PRIORITY ] ) ) > ( unsigned portBASE_TYPE ) 1 )\r
1770                         {\r
1771                                 taskYIELD();\r
1772                         }\r
1773                 }\r
1774                 #endif\r
1775 \r
1776                 #if ( configUSE_IDLE_HOOK == 1 )\r
1777                 {\r
1778                         extern void vApplicationIdleHook( void );\r
1779 \r
1780                         /* Call the user defined function from within the idle task.  This\r
1781                         allows the application designer to add background functionality\r
1782                         without the overhead of a separate task.\r
1783                         NOTE: vApplicationIdleHook() MUST NOT, UNDER ANY CIRCUMSTANCES,\r
1784                         CALL A FUNCTION THAT MIGHT BLOCK. */\r
1785                         vApplicationIdleHook();\r
1786                 }\r
1787                 #endif\r
1788         }\r
1789 } /*lint !e715 pvParameters is not accessed but all task functions require the same prototype. */\r
1790 \r
1791 \r
1792 \r
1793 \r
1794 \r
1795 \r
1796 \r
1797 /*-----------------------------------------------------------\r
1798  * File private functions documented at the top of the file.\r
1799  *----------------------------------------------------------*/\r
1800 \r
1801 \r
1802 \r
1803 static void prvInitialiseTCBVariables( tskTCB *pxTCB, const signed portCHAR * const pcName, unsigned portBASE_TYPE uxPriority )\r
1804 {\r
1805         /* Store the function name in the TCB. */\r
1806         #if configMAX_TASK_NAME_LEN > 1\r
1807         {\r
1808                 /* Don't bring strncpy into the build unnecessarily. */\r
1809                 strncpy( ( char * ) pxTCB->pcTaskName, ( const char * ) pcName, ( unsigned portSHORT ) configMAX_TASK_NAME_LEN );\r
1810         }\r
1811         #endif\r
1812         pxTCB->pcTaskName[ ( unsigned portSHORT ) configMAX_TASK_NAME_LEN - ( unsigned portSHORT ) 1 ] = '\0';\r
1813 \r
1814         /* This is used as an array index so must ensure it's not too large. */\r
1815         if( uxPriority >= configMAX_PRIORITIES )\r
1816         {\r
1817                 uxPriority = configMAX_PRIORITIES - 1;\r
1818         }\r
1819 \r
1820         pxTCB->uxPriority = uxPriority;\r
1821         #if ( configUSE_MUTEXES == 1 )\r
1822         {\r
1823                 pxTCB->uxBasePriority = uxPriority;\r
1824         }\r
1825         #endif\r
1826 \r
1827         vListInitialiseItem( &( pxTCB->xGenericListItem ) );\r
1828         vListInitialiseItem( &( pxTCB->xEventListItem ) );\r
1829 \r
1830         /* Set the pxTCB as a link back from the xListItem.  This is so we can get\r
1831         back to the containing TCB from a generic item in a list. */\r
1832         listSET_LIST_ITEM_OWNER( &( pxTCB->xGenericListItem ), pxTCB );\r
1833 \r
1834         /* Event lists are always in priority order. */\r
1835         listSET_LIST_ITEM_VALUE( &( pxTCB->xEventListItem ), configMAX_PRIORITIES - ( portTickType ) uxPriority );\r
1836         listSET_LIST_ITEM_OWNER( &( pxTCB->xEventListItem ), pxTCB );\r
1837 \r
1838         #if ( portCRITICAL_NESTING_IN_TCB == 1 )\r
1839         {\r
1840                 pxTCB->uxCriticalNesting = ( unsigned portBASE_TYPE ) 0;\r
1841         }\r
1842         #endif\r
1843 \r
1844         #if ( configUSE_APPLICATION_TASK_TAG == 1 )\r
1845         {\r
1846                 pxTCB->pxTaskTag = NULL;\r
1847         }\r
1848         #endif\r
1849 \r
1850         #if ( configGENERATE_RUN_TIME_STATS == 1 )\r
1851         {\r
1852                 pxTCB->ulRunTimeCounter = 0UL;\r
1853         }\r
1854         #endif\r
1855 }\r
1856 /*-----------------------------------------------------------*/\r
1857 \r
1858 static void prvInitialiseTaskLists( void )\r
1859 {\r
1860 unsigned portBASE_TYPE uxPriority;\r
1861 \r
1862         for( uxPriority = 0; uxPriority < configMAX_PRIORITIES; uxPriority++ )\r
1863         {\r
1864                 vListInitialise( ( xList * ) &( pxReadyTasksLists[ uxPriority ] ) );\r
1865         }\r
1866 \r
1867         vListInitialise( ( xList * ) &xDelayedTaskList1 );\r
1868         vListInitialise( ( xList * ) &xDelayedTaskList2 );\r
1869         vListInitialise( ( xList * ) &xPendingReadyList );\r
1870 \r
1871         #if ( INCLUDE_vTaskDelete == 1 )\r
1872         {\r
1873                 vListInitialise( ( xList * ) &xTasksWaitingTermination );\r
1874         }\r
1875         #endif\r
1876 \r
1877         #if ( INCLUDE_vTaskSuspend == 1 )\r
1878         {\r
1879                 vListInitialise( ( xList * ) &xSuspendedTaskList );\r
1880         }\r
1881         #endif\r
1882 \r
1883         /* Start with pxDelayedTaskList using list1 and the pxOverflowDelayedTaskList\r
1884         using list2. */\r
1885         pxDelayedTaskList = &xDelayedTaskList1;\r
1886         pxOverflowDelayedTaskList = &xDelayedTaskList2;\r
1887 }\r
1888 /*-----------------------------------------------------------*/\r
1889 \r
1890 static void prvCheckTasksWaitingTermination( void )\r
1891 {\r
1892         #if ( INCLUDE_vTaskDelete == 1 )\r
1893         {\r
1894                 portBASE_TYPE xListIsEmpty;\r
1895 \r
1896                 /* ucTasksDeleted is used to prevent vTaskSuspendAll() being called\r
1897                 too often in the idle task. */\r
1898                 if( uxTasksDeleted > ( unsigned portBASE_TYPE ) 0 )\r
1899                 {\r
1900                         vTaskSuspendAll();\r
1901                                 xListIsEmpty = listLIST_IS_EMPTY( &xTasksWaitingTermination );\r
1902                         xTaskResumeAll();\r
1903 \r
1904                         if( !xListIsEmpty )\r
1905                         {\r
1906                                 tskTCB *pxTCB;\r
1907 \r
1908                                 portENTER_CRITICAL();\r
1909                                 {\r
1910                                         pxTCB = ( tskTCB * ) listGET_OWNER_OF_HEAD_ENTRY( ( ( xList * ) &xTasksWaitingTermination ) );\r
1911                                         vListRemove( &( pxTCB->xGenericListItem ) );\r
1912                                         --uxCurrentNumberOfTasks;\r
1913                                         --uxTasksDeleted;\r
1914                                 }\r
1915                                 portEXIT_CRITICAL();\r
1916 \r
1917                                 prvDeleteTCB( pxTCB );\r
1918                         }\r
1919                 }\r
1920         }\r
1921         #endif\r
1922 }\r
1923 /*-----------------------------------------------------------*/\r
1924 \r
1925 static tskTCB *prvAllocateTCBAndStack( unsigned portSHORT usStackDepth )\r
1926 {\r
1927 tskTCB *pxNewTCB;\r
1928 \r
1929         /* Allocate space for the TCB.  Where the memory comes from depends on\r
1930         the implementation of the port malloc function. */\r
1931         pxNewTCB = ( tskTCB * ) pvPortMalloc( sizeof( tskTCB ) );\r
1932 \r
1933         if( pxNewTCB != NULL )\r
1934         {\r
1935                 /* Allocate space for the stack used by the task being created.\r
1936                 The base of the stack memory stored in the TCB so the task can\r
1937                 be deleted later if required. */\r
1938                 pxNewTCB->pxStack = ( portSTACK_TYPE * ) pvPortMalloc( ( ( size_t )usStackDepth ) * sizeof( portSTACK_TYPE ) );\r
1939 \r
1940                 if( pxNewTCB->pxStack == NULL )\r
1941                 {\r
1942                         /* Could not allocate the stack.  Delete the allocated TCB. */\r
1943                         vPortFree( pxNewTCB );\r
1944                         pxNewTCB = NULL;\r
1945                 }\r
1946                 else\r
1947                 {\r
1948                         /* Just to help debugging. */\r
1949                         memset( pxNewTCB->pxStack, tskSTACK_FILL_BYTE, usStackDepth * sizeof( portSTACK_TYPE ) );\r
1950                 }\r
1951         }\r
1952 \r
1953         return pxNewTCB;\r
1954 }\r
1955 /*-----------------------------------------------------------*/\r
1956 \r
1957 #if ( configUSE_TRACE_FACILITY == 1 )\r
1958 \r
1959         static void prvListTaskWithinSingleList( const signed portCHAR *pcWriteBuffer, xList *pxList, signed portCHAR cStatus )\r
1960         {\r
1961         volatile tskTCB *pxNextTCB, *pxFirstTCB;\r
1962         unsigned portSHORT usStackRemaining;\r
1963 \r
1964                 /* Write the details of all the TCB's in pxList into the buffer. */\r
1965                 listGET_OWNER_OF_NEXT_ENTRY( pxFirstTCB, pxList );\r
1966                 do\r
1967                 {\r
1968                         listGET_OWNER_OF_NEXT_ENTRY( pxNextTCB, pxList );\r
1969                         usStackRemaining = usTaskCheckFreeStackSpace( ( unsigned portCHAR * ) pxNextTCB->pxStack );\r
1970                         sprintf( pcStatusString, ( portCHAR * ) "%s\t\t%c\t%u\t%u\t%u\r\n", pxNextTCB->pcTaskName, cStatus, ( unsigned int ) pxNextTCB->uxPriority, usStackRemaining, ( unsigned int ) pxNextTCB->uxTCBNumber );\r
1971                         strcat( ( portCHAR * ) pcWriteBuffer, ( portCHAR * ) pcStatusString );\r
1972 \r
1973                 } while( pxNextTCB != pxFirstTCB );\r
1974         }\r
1975 \r
1976 #endif\r
1977 /*-----------------------------------------------------------*/\r
1978 \r
1979 #if ( configGENERATE_RUN_TIME_STATS == 1 )\r
1980 \r
1981         static void prvGenerateRunTimeStatsForTasksInList( const signed portCHAR *pcWriteBuffer, xList *pxList, unsigned portLONG ulTotalRunTime )\r
1982         {\r
1983         volatile tskTCB *pxNextTCB, *pxFirstTCB;\r
1984         unsigned portLONG ulStatsAsPercentage;\r
1985 \r
1986                 /* Write the run time stats of all the TCB's in pxList into the buffer. */\r
1987                 listGET_OWNER_OF_NEXT_ENTRY( pxFirstTCB, pxList );\r
1988                 do\r
1989                 {\r
1990                         /* Get next TCB in from the list. */\r
1991                         listGET_OWNER_OF_NEXT_ENTRY( pxNextTCB, pxList );\r
1992 \r
1993                         /* Divide by zero check. */\r
1994                         if( ulTotalRunTime > 0UL )\r
1995                         {\r
1996                                 /* Has the task run at all? */\r
1997                                 if( pxNextTCB->ulRunTimeCounter == 0 )\r
1998                                 {\r
1999                                         /* The task has used no CPU time at all. */\r
2000                                         sprintf( pcStatsString, ( portCHAR * ) "%s\t\t0\t\t0%%\r\n", pxNextTCB->pcTaskName );\r
2001                                 }\r
2002                                 else\r
2003                                 {\r
2004                                         /* What percentage of the total run time as the task used?\r
2005                                         This will always be rounded down to the nearest integer. */\r
2006                                         ulStatsAsPercentage = ( 100UL * pxNextTCB->ulRunTimeCounter ) / ulTotalRunTime;\r
2007 \r
2008                                         if( ulStatsAsPercentage > 0UL )\r
2009                                         {\r
2010                                                 sprintf( pcStatsString, ( portCHAR * ) "%s\t\t%u\t\t%u%%\r\n", pxNextTCB->pcTaskName, ( unsigned int ) pxNextTCB->ulRunTimeCounter, ( unsigned int ) ulStatsAsPercentage );\r
2011                                         }\r
2012                                         else\r
2013                                         {\r
2014                                                 /* If the percentage is zero here then the task has\r
2015                                                 consumed less than 1% of the total run time. */\r
2016                                                 sprintf( pcStatsString, ( portCHAR * ) "%s\t\t%u\t\t<1%%\r\n", pxNextTCB->pcTaskName, ( unsigned int ) pxNextTCB->ulRunTimeCounter );\r
2017                                         }\r
2018                                 }\r
2019 \r
2020                                 strcat( ( portCHAR * ) pcWriteBuffer, ( portCHAR * ) pcStatsString );\r
2021                         }\r
2022 \r
2023                 } while( pxNextTCB != pxFirstTCB );\r
2024         }\r
2025 \r
2026 #endif\r
2027 /*-----------------------------------------------------------*/\r
2028 \r
2029 #if ( ( configUSE_TRACE_FACILITY == 1 ) || ( INCLUDE_uxTaskGetStackHighWaterMark == 1 ) )\r
2030 \r
2031         unsigned portSHORT usTaskCheckFreeStackSpace( const unsigned portCHAR * pucStackByte )\r
2032         {\r
2033         register unsigned portSHORT usCount = 0;\r
2034 \r
2035                 while( *pucStackByte == tskSTACK_FILL_BYTE )\r
2036                 {\r
2037                         pucStackByte -= portSTACK_GROWTH;\r
2038                         usCount++;\r
2039                 }\r
2040 \r
2041                 usCount /= sizeof( portSTACK_TYPE );\r
2042 \r
2043                 return usCount;\r
2044         }\r
2045 \r
2046 #endif\r
2047 /*-----------------------------------------------------------*/\r
2048 \r
2049 #if ( INCLUDE_uxTaskGetStackHighWaterMark == 1 )\r
2050 \r
2051         unsigned portBASE_TYPE uxTaskGetStackHighWaterMark( xTaskHandle xTask )\r
2052         {\r
2053         tskTCB *pxTCB;\r
2054         unsigned portCHAR *pcEndOfStack;\r
2055 \r
2056                 pxTCB = prvGetTCBFromHandle( xTask );\r
2057 \r
2058                 #if portSTACK_GROWTH < 0\r
2059                 {\r
2060                         pcEndOfStack = ( unsigned portCHAR * ) pxTCB->pxStack;\r
2061                 }\r
2062                 #else\r
2063                 {\r
2064                         pcEndOfStack = ( unsigned portCHAR * ) pxTCB->pxEndOfStack;\r
2065                 }\r
2066                 #endif\r
2067 \r
2068                 return usTaskCheckFreeStackSpace( pcEndOfStack );\r
2069         }\r
2070 \r
2071 #endif\r
2072 /*-----------------------------------------------------------*/\r
2073 \r
2074 #if ( ( INCLUDE_vTaskDelete == 1 ) || ( INCLUDE_vTaskCleanUpResources == 1 ) )\r
2075 \r
2076         static void prvDeleteTCB( tskTCB *pxTCB )\r
2077         {\r
2078                 /* Free up the memory allocated by the scheduler for the task.  It is up to\r
2079                 the task to free any memory allocated at the application level. */\r
2080                 vPortFree( pxTCB->pxStack );\r
2081                 vPortFree( pxTCB );\r
2082         }\r
2083 \r
2084 #endif\r
2085 \r
2086 \r
2087 /*-----------------------------------------------------------*/\r
2088 \r
2089 #if ( INCLUDE_xTaskGetCurrentTaskHandle == 1 )\r
2090 \r
2091         xTaskHandle xTaskGetCurrentTaskHandle( void )\r
2092         {\r
2093                 /* A critical section is not required as this is not called from\r
2094                 an interrupt and the current TCB will always be the same for any\r
2095                 individual execution thread. */\r
2096                 return pxCurrentTCB;\r
2097         }\r
2098 \r
2099 #endif\r
2100 \r
2101 /*-----------------------------------------------------------*/\r
2102 \r
2103 #if ( INCLUDE_xTaskGetSchedulerState == 1 )\r
2104 \r
2105         portBASE_TYPE xTaskGetSchedulerState( void )\r
2106         {\r
2107         portBASE_TYPE xReturn;\r
2108 \r
2109                 if( xSchedulerRunning == pdFALSE )\r
2110                 {\r
2111                         xReturn = taskSCHEDULER_NOT_STARTED;\r
2112                 }\r
2113                 else\r
2114                 {\r
2115                         if( uxSchedulerSuspended == ( unsigned portBASE_TYPE ) pdFALSE )\r
2116                         {\r
2117                                 xReturn = taskSCHEDULER_RUNNING;\r
2118                         }\r
2119                         else\r
2120                         {\r
2121                                 xReturn = taskSCHEDULER_SUSPENDED;\r
2122                         }\r
2123                 }\r
2124 \r
2125                 return xReturn;\r
2126         }\r
2127 \r
2128 #endif\r
2129 /*-----------------------------------------------------------*/\r
2130 \r
2131 #if ( configUSE_MUTEXES == 1 )\r
2132 \r
2133         void vTaskPriorityInherit( xTaskHandle * const pxMutexHolder )\r
2134         {\r
2135         tskTCB * const pxTCB = ( tskTCB * ) pxMutexHolder;\r
2136 \r
2137                 if( pxTCB->uxPriority < pxCurrentTCB->uxPriority )\r
2138                 {\r
2139                         /* Adjust the mutex holder state to account for its new priority. */\r
2140                         listSET_LIST_ITEM_VALUE( &( pxTCB->xEventListItem ), configMAX_PRIORITIES - ( portTickType ) pxCurrentTCB->uxPriority );\r
2141 \r
2142                         /* If the task being modified is in the ready state it will need to\r
2143                         be moved in to a new list. */\r
2144                         if( listIS_CONTAINED_WITHIN( &( pxReadyTasksLists[ pxTCB->uxPriority ] ), &( pxTCB->xGenericListItem ) ) )\r
2145                         {\r
2146                                 vListRemove( &( pxTCB->xGenericListItem ) );\r
2147 \r
2148                                 /* Inherit the priority before being moved into the new list. */\r
2149                                 pxTCB->uxPriority = pxCurrentTCB->uxPriority;\r
2150                                 prvAddTaskToReadyQueue( pxTCB );\r
2151                         }\r
2152                         else\r
2153                         {\r
2154                                 /* Just inherit the priority. */\r
2155                                 pxTCB->uxPriority = pxCurrentTCB->uxPriority;\r
2156                         }\r
2157                 }\r
2158         }\r
2159 \r
2160 #endif\r
2161 /*-----------------------------------------------------------*/\r
2162 \r
2163 #if ( configUSE_MUTEXES == 1 )\r
2164 \r
2165         void vTaskPriorityDisinherit( xTaskHandle * const pxMutexHolder )\r
2166         {\r
2167         tskTCB * const pxTCB = ( tskTCB * ) pxMutexHolder;\r
2168 \r
2169                 if( pxMutexHolder != NULL )\r
2170                 {\r
2171                         if( pxTCB->uxPriority != pxTCB->uxBasePriority )\r
2172                         {\r
2173                                 /* We must be the running task to be able to give the mutex back.\r
2174                                 Remove ourselves from the ready list we currently appear in. */\r
2175                                 vListRemove( &( pxTCB->xGenericListItem ) );\r
2176 \r
2177                                 /* Disinherit the priority before adding ourselves into the new\r
2178                                 ready list. */\r
2179                                 pxTCB->uxPriority = pxTCB->uxBasePriority;\r
2180                                 listSET_LIST_ITEM_VALUE( &( pxTCB->xEventListItem ), configMAX_PRIORITIES - ( portTickType ) pxTCB->uxPriority );\r
2181                                 prvAddTaskToReadyQueue( pxTCB );\r
2182                         }\r
2183                 }\r
2184         }\r
2185 \r
2186 #endif\r
2187 /*-----------------------------------------------------------*/\r
2188 \r
2189 #if ( portCRITICAL_NESTING_IN_TCB == 1 )\r
2190 \r
2191         void vTaskEnterCritical( void )\r
2192         {\r
2193                 portDISABLE_INTERRUPTS();\r
2194 \r
2195                 if( xSchedulerRunning != pdFALSE )\r
2196                 {\r
2197                         pxCurrentTCB->uxCriticalNesting++;\r
2198                 }\r
2199         }\r
2200 \r
2201 #endif\r
2202 /*-----------------------------------------------------------*/\r
2203 \r
2204 #if ( portCRITICAL_NESTING_IN_TCB == 1 )\r
2205 \r
2206 void vTaskExitCritical( void )\r
2207 {\r
2208         if( xSchedulerRunning != pdFALSE )\r
2209         {\r
2210                 if( pxCurrentTCB->uxCriticalNesting > 0 )\r
2211                 {\r
2212                         pxCurrentTCB->uxCriticalNesting--;\r
2213 \r
2214                         if( pxCurrentTCB->uxCriticalNesting == 0 )\r
2215                         {\r
2216                                 portENABLE_INTERRUPTS();\r
2217                         }\r
2218                 }\r
2219         }\r
2220 }\r
2221 \r
2222 #endif\r
2223 /*-----------------------------------------------------------*/\r
2224 \r
2225 \r
2226 \r
2227 \r