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