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