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