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