]> git.sur5r.net Git - freertos/blob - FreeRTOS/Source/tasks.c
Change version numbers in preparation for V7.6.0 release.
[freertos] / FreeRTOS / Source / tasks.c
1 /*\r
2     FreeRTOS V7.6.0 - Copyright (C) 2013 Real Time Engineers Ltd.\r
3     All rights reserved\r
4 \r
5     VISIT http://www.FreeRTOS.org TO ENSURE YOU ARE USING THE LATEST VERSION.\r
6 \r
7     ***************************************************************************\r
8      *                                                                       *\r
9      *    FreeRTOS provides completely free yet professionally developed,    *\r
10      *    robust, strictly quality controlled, supported, and cross          *\r
11      *    platform software that has become a de facto standard.             *\r
12      *                                                                       *\r
13      *    Help yourself get started quickly and support the FreeRTOS         *\r
14      *    project by purchasing a FreeRTOS tutorial book, reference          *\r
15      *    manual, or both from: http://www.FreeRTOS.org/Documentation        *\r
16      *                                                                       *\r
17      *    Thank you!                                                         *\r
18      *                                                                       *\r
19     ***************************************************************************\r
20 \r
21     This file is part of the FreeRTOS distribution.\r
22 \r
23     FreeRTOS is free software; you can redistribute it and/or modify it under\r
24     the terms of the GNU General Public License (version 2) as published by the\r
25     Free Software Foundation >>!AND MODIFIED BY!<< the FreeRTOS exception.\r
26 \r
27     >>! NOTE: The modification to the GPL is included to allow you to distribute\r
28     >>! a combined work that includes FreeRTOS without being obliged to provide\r
29     >>! the source code for proprietary components outside of the FreeRTOS\r
30     >>! kernel.\r
31 \r
32     FreeRTOS is distributed in the hope that it will be useful, but WITHOUT ANY\r
33     WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS\r
34     FOR A PARTICULAR PURPOSE.  Full license text is available from the following\r
35     link: http://www.freertos.org/a00114.html\r
36 \r
37     1 tab == 4 spaces!\r
38 \r
39     ***************************************************************************\r
40      *                                                                       *\r
41      *    Having a problem?  Start by reading the FAQ "My application does   *\r
42      *    not run, what could be wrong?"                                     *\r
43      *                                                                       *\r
44      *    http://www.FreeRTOS.org/FAQHelp.html                               *\r
45      *                                                                       *\r
46     ***************************************************************************\r
47 \r
48     http://www.FreeRTOS.org - Documentation, books, training, latest versions,\r
49     license and Real Time Engineers Ltd. contact details.\r
50 \r
51     http://www.FreeRTOS.org/plus - A selection of FreeRTOS ecosystem products,\r
52     including FreeRTOS+Trace - an indispensable productivity tool, a DOS\r
53     compatible FAT file system, and our tiny thread aware UDP/IP stack.\r
54 \r
55     http://www.OpenRTOS.com - Real Time Engineers ltd license FreeRTOS to High\r
56     Integrity Systems to sell under the OpenRTOS brand.  Low cost OpenRTOS\r
57     licenses offer ticketed support, indemnification and middleware.\r
58 \r
59     http://www.SafeRTOS.com - High Integrity Systems also provide a safety\r
60     engineered and independently SIL3 certified version for use in safety and\r
61     mission critical applications that require provable dependability.\r
62 \r
63     1 tab == 4 spaces!\r
64 */\r
65 \r
66 /* Standard includes. */\r
67 #include <stdlib.h>\r
68 #include <string.h>\r
69 \r
70 /* Defining MPU_WRAPPERS_INCLUDED_FROM_API_FILE prevents task.h from redefining\r
71 all the API functions to use the MPU wrappers.  That should only be done when\r
72 task.h is included from an application file. */\r
73 #define MPU_WRAPPERS_INCLUDED_FROM_API_FILE\r
74 \r
75 /* FreeRTOS includes. */\r
76 #include "FreeRTOS.h"\r
77 #include "task.h"\r
78 #include "timers.h"\r
79 #include "StackMacros.h"\r
80 \r
81 /* Lint e961 and e750 are suppressed as a MISRA exception justified because the\r
82 MPU ports require MPU_WRAPPERS_INCLUDED_FROM_API_FILE to be defined for the\r
83 header files above, but not in this file, in order to generate the correct\r
84 privileged Vs unprivileged linkage and placement. */\r
85 #undef MPU_WRAPPERS_INCLUDED_FROM_API_FILE /*lint !e961 !e750. */\r
86 \r
87 #if ( configUSE_STATS_FORMATTING_FUNCTIONS == 1 )\r
88         /* At the bottom of this file are two optional functions that can be used\r
89         to generate human readable text from the raw data generated by the\r
90         uxTaskGetSystemState() function.  Note the formatting functions are provided\r
91         for convenience only, and are NOT considered part of the kernel. */\r
92         #include <stdio.h>\r
93 #endif /* configUSE_STATS_FORMATTING_FUNCTIONS == 1 ) */\r
94 \r
95 /* Sanity check the configuration. */\r
96 #if configUSE_TICKLESS_IDLE != 0\r
97         #if INCLUDE_vTaskSuspend != 1\r
98                 #error INCLUDE_vTaskSuspend must be set to 1 if configUSE_TICKLESS_IDLE is not set to 0\r
99         #endif /* INCLUDE_vTaskSuspend */\r
100 #endif /* configUSE_TICKLESS_IDLE */\r
101 \r
102 /*\r
103  * Defines the size, in words, of the stack allocated to the idle task.\r
104  */\r
105 #define tskIDLE_STACK_SIZE      configMINIMAL_STACK_SIZE\r
106 \r
107 #if( configUSE_PREEMPTION == 0 )\r
108         /* If the cooperative scheduler is being used then a yield should not be\r
109         performed just because a higher priority task has been woken. */\r
110         #define taskYIELD_IF_USING_PREEMPTION()\r
111 #else\r
112         #define taskYIELD_IF_USING_PREEMPTION() portYIELD_WITHIN_API()\r
113 #endif\r
114 \r
115 /*\r
116  * Task control block.  A task control block (TCB) is allocated for each task,\r
117  * and stores task state information, including a pointer to the task's context\r
118  * (the task's run time environment, including register values)\r
119  */\r
120 typedef struct tskTaskControlBlock\r
121 {\r
122         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 TCB STRUCT. */\r
123 \r
124         #if ( portUSING_MPU_WRAPPERS == 1 )\r
125                 xMPU_SETTINGS xMPUSettings;                             /*< The MPU settings are defined as part of the port layer.  THIS MUST BE THE SECOND MEMBER OF THE TCB STRUCT. */\r
126         #endif\r
127 \r
128         xListItem                               xGenericListItem;       /*< The list that the state list item of a task is reference from denotes the state of that task (Ready, Blocked, Suspended ). */\r
129         xListItem                               xEventListItem;         /*< Used to reference a task from an event list. */\r
130         unsigned portBASE_TYPE  uxPriority;                     /*< The priority of the task.  0 is the lowest priority. */\r
131         portSTACK_TYPE                  *pxStack;                       /*< Points to the start of the stack. */\r
132         signed char                             pcTaskName[ configMAX_TASK_NAME_LEN ];/*< Descriptive name given to the task when created.  Facilitates debugging only. */\r
133 \r
134         #if ( portSTACK_GROWTH > 0 )\r
135                 portSTACK_TYPE *pxEndOfStack;                   /*< Points to the end of the stack on architectures where the stack grows up from low memory. */\r
136         #endif\r
137 \r
138         #if ( portCRITICAL_NESTING_IN_TCB == 1 )\r
139                 unsigned portBASE_TYPE uxCriticalNesting; /*< Holds the critical section nesting depth for ports that do not maintain their own count in the port layer. */\r
140         #endif\r
141 \r
142         #if ( configUSE_TRACE_FACILITY == 1 )\r
143                 unsigned portBASE_TYPE  uxTCBNumber;    /*< Stores a number that increments each time a TCB is created.  It allows debuggers to determine when a task has been deleted and then recreated. */\r
144                 unsigned portBASE_TYPE  uxTaskNumber;   /*< Stores a number specifically for use by third party trace code. */\r
145         #endif\r
146 \r
147         #if ( configUSE_MUTEXES == 1 )\r
148                 unsigned portBASE_TYPE uxBasePriority;  /*< The priority last assigned to the task - used by the priority inheritance mechanism. */\r
149         #endif\r
150 \r
151         #if ( configUSE_APPLICATION_TASK_TAG == 1 )\r
152                 pdTASK_HOOK_CODE pxTaskTag;\r
153         #endif\r
154 \r
155         #if ( configGENERATE_RUN_TIME_STATS == 1 )\r
156                 unsigned long ulRunTimeCounter;                 /*< Stores the amount of time the task has spent in the Running state. */\r
157         #endif\r
158 \r
159         #if ( configUSE_NEWLIB_REENTRANT == 1 )\r
160                 /* Allocate a Newlib reent structure that is specific to this task.\r
161                 Note Newlib support has been included by popular demand, but is not\r
162                 used by the FreeRTOS maintainers themselves.  FreeRTOS is not\r
163                 responsible for resulting newlib operation.  User must be familiar with\r
164                 newlib and must provide system-wide implementations of the necessary\r
165                 stubs. Be warned that (at the time of writing) the current newlib design\r
166                 implements a system-wide malloc() that must be provided with locks. */\r
167                 struct _reent xNewLib_reent;\r
168         #endif\r
169 \r
170 } tskTCB;\r
171 \r
172 \r
173 /*\r
174  * Some kernel aware debuggers require the data the debugger needs access to to\r
175  * be global, rather than file scope.\r
176  */\r
177 #ifdef portREMOVE_STATIC_QUALIFIER\r
178         #define static\r
179 #endif\r
180 \r
181 /*lint -e956 A manual analysis and inspection has been used to determine which\r
182 static variables must be declared volatile. */\r
183 \r
184 PRIVILEGED_DATA tskTCB * volatile pxCurrentTCB = NULL;\r
185 \r
186 /* Lists for ready and blocked tasks. --------------------*/\r
187 PRIVILEGED_DATA static xList pxReadyTasksLists[ configMAX_PRIORITIES ]; /*< Prioritised ready tasks. */\r
188 PRIVILEGED_DATA static xList xDelayedTaskList1;                                                 /*< Delayed tasks. */\r
189 PRIVILEGED_DATA static xList xDelayedTaskList2;                                                 /*< Delayed tasks (two lists are used - one for delays that have overflowed the current tick count. */\r
190 PRIVILEGED_DATA static xList * volatile pxDelayedTaskList;                              /*< Points to the delayed task list currently being used. */\r
191 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
192 PRIVILEGED_DATA static xList xPendingReadyList;                                                 /*< Tasks that have been readied while the scheduler was suspended.  They will be moved to the ready list when the scheduler is resumed. */\r
193 \r
194 #if ( INCLUDE_vTaskDelete == 1 )\r
195 \r
196         PRIVILEGED_DATA static xList xTasksWaitingTermination;                          /*< Tasks that have been deleted - but the their memory not yet freed. */\r
197         PRIVILEGED_DATA static volatile unsigned portBASE_TYPE uxTasksDeleted = ( unsigned portBASE_TYPE ) 0U;\r
198 \r
199 #endif\r
200 \r
201 #if ( INCLUDE_vTaskSuspend == 1 )\r
202 \r
203         PRIVILEGED_DATA static xList xSuspendedTaskList;                                        /*< Tasks that are currently suspended. */\r
204 \r
205 #endif\r
206 \r
207 #if ( INCLUDE_xTaskGetIdleTaskHandle == 1 )\r
208 \r
209         PRIVILEGED_DATA static xTaskHandle xIdleTaskHandle = NULL;                      /*< Holds the handle of the idle task.  The idle task is created automatically when the scheduler is started. */\r
210 \r
211 #endif\r
212 \r
213 /* Other file private variables. --------------------------------*/\r
214 PRIVILEGED_DATA static volatile unsigned portBASE_TYPE uxCurrentNumberOfTasks   = ( unsigned portBASE_TYPE ) 0U;\r
215 PRIVILEGED_DATA static volatile portTickType xTickCount                                                 = ( portTickType ) 0U;\r
216 PRIVILEGED_DATA static volatile unsigned portBASE_TYPE uxTopReadyPriority               = tskIDLE_PRIORITY;\r
217 PRIVILEGED_DATA static volatile signed portBASE_TYPE xSchedulerRunning                  = pdFALSE;\r
218 PRIVILEGED_DATA static volatile unsigned portBASE_TYPE uxSchedulerSuspended             = ( unsigned portBASE_TYPE ) pdFALSE;\r
219 PRIVILEGED_DATA static volatile unsigned portBASE_TYPE uxPendedTicks                    = ( unsigned portBASE_TYPE ) 0U;\r
220 PRIVILEGED_DATA static volatile portBASE_TYPE xYieldPending                                     = pdFALSE;\r
221 PRIVILEGED_DATA static volatile portBASE_TYPE xNumOfOverflows                                   = ( portBASE_TYPE ) 0;\r
222 PRIVILEGED_DATA static unsigned portBASE_TYPE uxTaskNumber                                              = ( unsigned portBASE_TYPE ) 0U;\r
223 PRIVILEGED_DATA static volatile portTickType xNextTaskUnblockTime                               = portMAX_DELAY;\r
224 \r
225 #if ( configGENERATE_RUN_TIME_STATS == 1 )\r
226 \r
227         PRIVILEGED_DATA static unsigned long ulTaskSwitchedInTime = 0UL;        /*< Holds the value of a timer/counter the last time a task was switched in. */\r
228         PRIVILEGED_DATA static unsigned long ulTotalRunTime = 0UL;                      /*< Holds the total amount of execution time as defined by the run time counter clock. */\r
229 \r
230 #endif\r
231 \r
232 /*lint +e956 */\r
233 \r
234 /* Debugging and trace facilities private variables and macros. ------------*/\r
235 \r
236 /*\r
237  * The value used to fill the stack of a task when the task is created.  This\r
238  * is used purely for checking the high water mark for tasks.\r
239  */\r
240 #define tskSTACK_FILL_BYTE      ( 0xa5U )\r
241 \r
242 /*\r
243  * Macros used by vListTask to indicate which state a task is in.\r
244  */\r
245 #define tskBLOCKED_CHAR         ( ( signed char ) 'B' )\r
246 #define tskREADY_CHAR           ( ( signed char ) 'R' )\r
247 #define tskDELETED_CHAR         ( ( signed char ) 'D' )\r
248 #define tskSUSPENDED_CHAR       ( ( signed char ) 'S' )\r
249 \r
250 /*-----------------------------------------------------------*/\r
251 \r
252 #if ( configUSE_PORT_OPTIMISED_TASK_SELECTION == 0 )\r
253 \r
254         /* If configUSE_PORT_OPTIMISED_TASK_SELECTION is 0 then task selection is\r
255         performed in a generic way that is not optimised to any particular\r
256         microcontroller architecture. */\r
257 \r
258         /* uxTopReadyPriority holds the priority of the highest priority ready\r
259         state task. */\r
260         #define taskRECORD_READY_PRIORITY( uxPriority )                                                                                                                                         \\r
261         {                                                                                                                                                                                                                                       \\r
262                 if( ( uxPriority ) > uxTopReadyPriority )                                                                                                                                               \\r
263                 {                                                                                                                                                                                                                               \\r
264                         uxTopReadyPriority = ( uxPriority );                                                                                                                                            \\r
265                 }                                                                                                                                                                                                                               \\r
266         } /* taskRECORD_READY_PRIORITY */\r
267 \r
268         /*-----------------------------------------------------------*/\r
269 \r
270         #define taskSELECT_HIGHEST_PRIORITY_TASK()                                                                                                                                                      \\r
271         {                                                                                                                                                                                                                                       \\r
272                 /* Find the highest priority queue that contains ready tasks. */                                                                                                \\r
273                 while( listLIST_IS_EMPTY( &( pxReadyTasksLists[ uxTopReadyPriority ] ) ) )                                                                              \\r
274                 {                                                                                                                                                                                                                               \\r
275                         configASSERT( uxTopReadyPriority );                                                                                                                                                     \\r
276                         --uxTopReadyPriority;                                                                                                                                                                           \\r
277                 }                                                                                                                                                                                                                               \\r
278                                                                                                                                                                                                                                                 \\r
279                 /* listGET_OWNER_OF_NEXT_ENTRY indexes through the list, so the tasks of                                                                                \\r
280                 the     same priority get an equal share of the processor time. */                                                                                                      \\r
281                 listGET_OWNER_OF_NEXT_ENTRY( pxCurrentTCB, &( pxReadyTasksLists[ uxTopReadyPriority ] ) );                                              \\r
282         } /* taskSELECT_HIGHEST_PRIORITY_TASK */\r
283 \r
284         /*-----------------------------------------------------------*/\r
285 \r
286         /* Define away taskRESET_READY_PRIORITY() and portRESET_READY_PRIORITY() as\r
287         they are only required when a port optimised method of task selection is\r
288         being used. */\r
289         #define taskRESET_READY_PRIORITY( uxPriority )\r
290         #define portRESET_READY_PRIORITY( uxPriority, uxTopReadyPriority )\r
291 \r
292 #else /* configUSE_PORT_OPTIMISED_TASK_SELECTION */\r
293 \r
294         /* If configUSE_PORT_OPTIMISED_TASK_SELECTION is 1 then task selection is\r
295         performed in a way that is tailored to the particular microcontroller\r
296         architecture being used. */\r
297 \r
298         /* A port optimised version is provided.  Call the port defined macros. */\r
299         #define taskRECORD_READY_PRIORITY( uxPriority ) portRECORD_READY_PRIORITY( uxPriority, uxTopReadyPriority )\r
300 \r
301         /*-----------------------------------------------------------*/\r
302 \r
303         #define taskSELECT_HIGHEST_PRIORITY_TASK()                                                                                                              \\r
304         {                                                                                                                                                                                               \\r
305         unsigned portBASE_TYPE uxTopPriority;                                                                                                                   \\r
306                                                                                                                                                                                                         \\r
307                 /* Find the highest priority queue that contains ready tasks. */                                                        \\r
308                 portGET_HIGHEST_PRIORITY( uxTopPriority, uxTopReadyPriority );                                                          \\r
309                 configASSERT( listCURRENT_LIST_LENGTH( &( pxReadyTasksLists[ uxTopPriority ] ) ) > 0 );         \\r
310                 listGET_OWNER_OF_NEXT_ENTRY( pxCurrentTCB, &( pxReadyTasksLists[ uxTopPriority ] ) );           \\r
311         } /* taskSELECT_HIGHEST_PRIORITY_TASK() */\r
312 \r
313         /*-----------------------------------------------------------*/\r
314 \r
315         /* A port optimised version is provided, call it only if the TCB being reset\r
316         is being referenced from a ready list.  If it is referenced from a delayed\r
317         or suspended list then it won't be in a ready list. */\r
318         #define taskRESET_READY_PRIORITY( uxPriority )                                                                                                  \\r
319         {                                                                                                                                                                                               \\r
320                 if( listCURRENT_LIST_LENGTH( &( pxReadyTasksLists[ ( uxPriority ) ] ) ) == 0 )                          \\r
321                 {                                                                                                                                                                                       \\r
322                         portRESET_READY_PRIORITY( ( uxPriority ), ( uxTopReadyPriority ) );                                             \\r
323                 }                                                                                                                                                                                       \\r
324         }\r
325 \r
326 #endif /* configUSE_PORT_OPTIMISED_TASK_SELECTION */\r
327 \r
328 /*-----------------------------------------------------------*/\r
329 \r
330 /* pxDelayedTaskList and pxOverflowDelayedTaskList are switched when the tick\r
331 count overflows. */\r
332 #define taskSWITCH_DELAYED_LISTS()                                                                                                                                      \\r
333 {                                                                                                                                                                                                       \\r
334         xList *pxTemp;                                                                                                                                                                  \\r
335                                                                                                                                                                                                         \\r
336         /* The delayed tasks list should be empty when the lists are switched. */                                               \\r
337         configASSERT( ( listLIST_IS_EMPTY( pxDelayedTaskList ) ) );                                                                             \\r
338                                                                                                                                                                                                         \\r
339         pxTemp = pxDelayedTaskList;                                                                                                                                             \\r
340         pxDelayedTaskList = pxOverflowDelayedTaskList;                                                                                                  \\r
341         pxOverflowDelayedTaskList = pxTemp;                                                                                                                             \\r
342         xNumOfOverflows++;                                                                                                                                                              \\r
343                                                                                                                                                                                                         \\r
344         if( listLIST_IS_EMPTY( pxDelayedTaskList ) != pdFALSE )                                                                                 \\r
345         {                                                                                                                                                                                               \\r
346                 /* The new current delayed list is empty.  Set                                                                                          \\r
347                 xNextTaskUnblockTime to the maximum possible value so it is                                                                     \\r
348                 extremely unlikely that the                                                                                                                                     \\r
349                 if( xTickCount >= xNextTaskUnblockTime ) test will pass until                                                           \\r
350                 there is an item in the delayed list. */                                                                                                        \\r
351                 xNextTaskUnblockTime = portMAX_DELAY;                                                                                                           \\r
352         }                                                                                                                                                                                               \\r
353         else                                                                                                                                                                                    \\r
354         {                                                                                                                                                                                               \\r
355                 /* The new current delayed list is not empty, get the value of                                                          \\r
356                 the item at the head of the delayed list.  This is the time at                                                          \\r
357                 which the task at the head of the delayed list should be removed                                                        \\r
358                 from the Blocked state. */                                                                                                                                      \\r
359                 pxTCB = ( tskTCB * ) listGET_OWNER_OF_HEAD_ENTRY( pxDelayedTaskList );                                          \\r
360                 xNextTaskUnblockTime = listGET_LIST_ITEM_VALUE( &( pxTCB->xGenericListItem ) );                         \\r
361         }                                                                                                                                                                                               \\r
362 }\r
363 \r
364 /*-----------------------------------------------------------*/\r
365 \r
366 /*\r
367  * Place the task represented by pxTCB into the appropriate ready list for\r
368  * the task.  It is inserted at the end of the list.\r
369  */\r
370 #define prvAddTaskToReadyList( pxTCB )                                                                                                                                                          \\r
371         traceMOVED_TASK_TO_READY_STATE( pxTCB )                                                                                                                                                 \\r
372         taskRECORD_READY_PRIORITY( ( pxTCB )->uxPriority );                                                                                                                             \\r
373         vListInsertEnd( &( pxReadyTasksLists[ ( pxTCB )->uxPriority ] ), &( ( pxTCB )->xGenericListItem ) )\r
374 /*-----------------------------------------------------------*/\r
375 \r
376 /*\r
377  * Several functions take an xTaskHandle parameter that can optionally be NULL,\r
378  * where NULL is used to indicate that the handle of the currently executing\r
379  * task should be used in place of the parameter.  This macro simply checks to\r
380  * see if the parameter is NULL and returns a pointer to the appropriate TCB.\r
381  */\r
382 #define prvGetTCBFromHandle( pxHandle ) ( ( ( pxHandle ) == NULL ) ? ( tskTCB * ) pxCurrentTCB : ( tskTCB * ) ( pxHandle ) )\r
383 \r
384 /* Callback function prototypes. --------------------------*/\r
385 extern void vApplicationStackOverflowHook( xTaskHandle xTask, signed char *pcTaskName );\r
386 extern void vApplicationTickHook( void );\r
387 \r
388 /* File private functions. --------------------------------*/\r
389 \r
390 /*\r
391  * Utility to ready a TCB for a given task.  Mainly just copies the parameters\r
392  * into the TCB structure.\r
393  */\r
394 static void prvInitialiseTCBVariables( tskTCB *pxTCB, const signed char * const pcName, unsigned portBASE_TYPE uxPriority, const xMemoryRegion * const xRegions, unsigned short usStackDepth ) PRIVILEGED_FUNCTION;\r
395 \r
396 /*\r
397  * Utility to ready all the lists used by the scheduler.  This is called\r
398  * automatically upon the creation of the first task.\r
399  */\r
400 static void prvInitialiseTaskLists( void ) PRIVILEGED_FUNCTION;\r
401 \r
402 /*\r
403  * The idle task, which as all tasks is implemented as a never ending loop.\r
404  * The idle task is automatically created and added to the ready lists upon\r
405  * creation of the first user task.\r
406  *\r
407  * The portTASK_FUNCTION_PROTO() macro is used to allow port/compiler specific\r
408  * language extensions.  The equivalent prototype for this function is:\r
409  *\r
410  * void prvIdleTask( void *pvParameters );\r
411  *\r
412  */\r
413 static portTASK_FUNCTION_PROTO( prvIdleTask, pvParameters );\r
414 \r
415 /*\r
416  * Utility to free all memory allocated by the scheduler to hold a TCB,\r
417  * including the stack pointed to by the TCB.\r
418  *\r
419  * This does not free memory allocated by the task itself (i.e. memory\r
420  * allocated by calls to pvPortMalloc from within the tasks application code).\r
421  */\r
422 #if ( INCLUDE_vTaskDelete == 1 )\r
423 \r
424         static void prvDeleteTCB( tskTCB *pxTCB ) PRIVILEGED_FUNCTION;\r
425 \r
426 #endif\r
427 \r
428 /*\r
429  * Used only by the idle task.  This checks to see if anything has been placed\r
430  * in the list of tasks waiting to be deleted.  If so the task is cleaned up\r
431  * and its TCB deleted.\r
432  */\r
433 static void prvCheckTasksWaitingTermination( void ) PRIVILEGED_FUNCTION;\r
434 \r
435 /*\r
436  * The currently executing task is entering the Blocked state.  Add the task to\r
437  * either the current or the overflow delayed task list.\r
438  */\r
439 static void prvAddCurrentTaskToDelayedList( portTickType xTimeToWake ) PRIVILEGED_FUNCTION;\r
440 \r
441 /*\r
442  * Allocates memory from the heap for a TCB and associated stack.  Checks the\r
443  * allocation was successful.\r
444  */\r
445 static tskTCB *prvAllocateTCBAndStack( unsigned short usStackDepth, portSTACK_TYPE *puxStackBuffer ) PRIVILEGED_FUNCTION;\r
446 \r
447 /*\r
448  * Fills an xTaskStatusType structure with information on each task that is\r
449  * referenced from the pxList list (which may be a ready list, a delayed list,\r
450  * a suspended list, etc.).\r
451  *\r
452  * THIS FUNCTION IS INTENDED FOR DEBUGGING ONLY, AND SHOULD NOT BE CALLED FROM\r
453  * NORMAL APPLICATION CODE.\r
454  */\r
455 #if ( configUSE_TRACE_FACILITY == 1 )\r
456 \r
457         static unsigned portBASE_TYPE prvListTaskWithinSingleList( xTaskStatusType *pxTaskStatusArray, xList *pxList, eTaskState eState ) PRIVILEGED_FUNCTION;\r
458 \r
459 #endif\r
460 \r
461 /*\r
462  * When a task is created, the stack of the task is filled with a known value.\r
463  * This function determines the 'high water mark' of the task stack by\r
464  * determining how much of the stack remains at the original preset value.\r
465  */\r
466 #if ( ( configUSE_TRACE_FACILITY == 1 ) || ( INCLUDE_uxTaskGetStackHighWaterMark == 1 ) )\r
467 \r
468         static unsigned short prvTaskCheckFreeStackSpace( const unsigned char * pucStackByte ) PRIVILEGED_FUNCTION;\r
469 \r
470 #endif\r
471 \r
472 /*\r
473  * Return the amount of time, in ticks, that will pass before the kernel will\r
474  * next move a task from the Blocked state to the Running state.\r
475  *\r
476  * This conditional compilation should use inequality to 0, not equality to 1.\r
477  * This is to ensure portSUPPRESS_TICKS_AND_SLEEP() can be called when user\r
478  * defined low power mode implementations require configUSE_TICKLESS_IDLE to be\r
479  * set to a value other than 1.\r
480  */\r
481 #if ( configUSE_TICKLESS_IDLE != 0 )\r
482 \r
483         static portTickType prvGetExpectedIdleTime( void ) PRIVILEGED_FUNCTION;\r
484 \r
485 #endif\r
486 \r
487 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
488 {\r
489 signed portBASE_TYPE xReturn;\r
490 tskTCB * pxNewTCB;\r
491 \r
492         configASSERT( pxTaskCode );\r
493         configASSERT( ( ( uxPriority & ( ~portPRIVILEGE_BIT ) ) < configMAX_PRIORITIES ) );\r
494 \r
495         /* Allocate the memory required by the TCB and stack for the new task,\r
496         checking that the allocation was successful. */\r
497         pxNewTCB = prvAllocateTCBAndStack( usStackDepth, puxStackBuffer );\r
498 \r
499         if( pxNewTCB != NULL )\r
500         {\r
501                 portSTACK_TYPE *pxTopOfStack;\r
502 \r
503                 #if( portUSING_MPU_WRAPPERS == 1 )\r
504                         /* Should the task be created in privileged mode? */\r
505                         portBASE_TYPE xRunPrivileged;\r
506                         if( ( uxPriority & portPRIVILEGE_BIT ) != 0U )\r
507                         {\r
508                                 xRunPrivileged = pdTRUE;\r
509                         }\r
510                         else\r
511                         {\r
512                                 xRunPrivileged = pdFALSE;\r
513                         }\r
514                         uxPriority &= ~portPRIVILEGE_BIT;\r
515                 #endif /* portUSING_MPU_WRAPPERS == 1 */\r
516 \r
517                 /* Calculate the top of stack address.  This depends on whether the\r
518                 stack grows from high memory to low (as per the 80x86) or visa versa.\r
519                 portSTACK_GROWTH is used to make the result positive or negative as\r
520                 required by the port. */\r
521                 #if( portSTACK_GROWTH < 0 )\r
522                 {\r
523                         pxTopOfStack = pxNewTCB->pxStack + ( usStackDepth - ( unsigned short ) 1 );\r
524                         pxTopOfStack = ( portSTACK_TYPE * ) ( ( ( portPOINTER_SIZE_TYPE ) pxTopOfStack ) & ( ( portPOINTER_SIZE_TYPE ) ~portBYTE_ALIGNMENT_MASK  ) ); /*lint !e923 MISRA exception.  Avoiding casts between pointers and integers is not practical.  Size differences accounted for using portPOINTER_SIZE_TYPE type. */\r
525 \r
526                         /* Check the alignment of the calculated top of stack is correct. */\r
527                         configASSERT( ( ( ( unsigned long ) pxTopOfStack & ( unsigned long ) portBYTE_ALIGNMENT_MASK ) == 0UL ) );\r
528                 }\r
529                 #else /* portSTACK_GROWTH */\r
530                 {\r
531                         pxTopOfStack = pxNewTCB->pxStack;\r
532 \r
533                         /* Check the alignment of the stack buffer is correct. */\r
534                         configASSERT( ( ( ( unsigned long ) pxNewTCB->pxStack & ( unsigned long ) portBYTE_ALIGNMENT_MASK ) == 0UL ) );\r
535 \r
536                         /* If we want to use stack checking on architectures that use\r
537                         a positive stack growth direction then we also need to store the\r
538                         other extreme of the stack space. */\r
539                         pxNewTCB->pxEndOfStack = pxNewTCB->pxStack + ( usStackDepth - 1 );\r
540                 }\r
541                 #endif /* portSTACK_GROWTH */\r
542 \r
543                 /* Setup the newly allocated TCB with the initial state of the task. */\r
544                 prvInitialiseTCBVariables( pxNewTCB, pcName, uxPriority, xRegions, usStackDepth );\r
545 \r
546                 /* Initialize the TCB stack to look as if the task was already running,\r
547                 but had been interrupted by the scheduler.  The return address is set\r
548                 to the start of the task function. Once the stack has been initialised\r
549                 the     top of stack variable is updated. */\r
550                 #if( portUSING_MPU_WRAPPERS == 1 )\r
551                 {\r
552                         pxNewTCB->pxTopOfStack = pxPortInitialiseStack( pxTopOfStack, pxTaskCode, pvParameters, xRunPrivileged );\r
553                 }\r
554                 #else /* portUSING_MPU_WRAPPERS */\r
555                 {\r
556                         pxNewTCB->pxTopOfStack = pxPortInitialiseStack( pxTopOfStack, pxTaskCode, pvParameters );\r
557                 }\r
558                 #endif /* portUSING_MPU_WRAPPERS */\r
559 \r
560                 if( ( void * ) pxCreatedTask != NULL )\r
561                 {\r
562                         /* Pass the TCB out - in an anonymous way.  The calling function/\r
563                         task can use this as a handle to delete the task later if\r
564                         required.*/\r
565                         *pxCreatedTask = ( xTaskHandle ) pxNewTCB;\r
566                 }\r
567 \r
568                 /* Ensure interrupts don't access the task lists while they are being\r
569                 updated. */\r
570                 taskENTER_CRITICAL();\r
571                 {\r
572                         uxCurrentNumberOfTasks++;\r
573                         if( pxCurrentTCB == NULL )\r
574                         {\r
575                                 /* There are no other tasks, or all the other tasks are in\r
576                                 the suspended state - make this the current task. */\r
577                                 pxCurrentTCB =  pxNewTCB;\r
578 \r
579                                 if( uxCurrentNumberOfTasks == ( unsigned portBASE_TYPE ) 1 )\r
580                                 {\r
581                                         /* This is the first task to be created so do the preliminary\r
582                                         initialisation required.  We will not recover if this call\r
583                                         fails, but we will report the failure. */\r
584                                         prvInitialiseTaskLists();\r
585                                 }\r
586                         }\r
587                         else\r
588                         {\r
589                                 /* If the scheduler is not already running, make this task the\r
590                                 current task if it is the highest priority task to be created\r
591                                 so far. */\r
592                                 if( xSchedulerRunning == pdFALSE )\r
593                                 {\r
594                                         if( pxCurrentTCB->uxPriority <= uxPriority )\r
595                                         {\r
596                                                 pxCurrentTCB = pxNewTCB;\r
597                                         }\r
598                                 }\r
599                         }\r
600 \r
601                         uxTaskNumber++;\r
602 \r
603                         #if ( configUSE_TRACE_FACILITY == 1 )\r
604                         {\r
605                                 /* Add a counter into the TCB for tracing only. */\r
606                                 pxNewTCB->uxTCBNumber = uxTaskNumber;\r
607                         }\r
608                         #endif /* configUSE_TRACE_FACILITY */\r
609                         traceTASK_CREATE( pxNewTCB );\r
610 \r
611                         prvAddTaskToReadyList( pxNewTCB );\r
612 \r
613                         xReturn = pdPASS;\r
614                         portSETUP_TCB( pxNewTCB );\r
615                 }\r
616                 taskEXIT_CRITICAL();\r
617         }\r
618         else\r
619         {\r
620                 xReturn = errCOULD_NOT_ALLOCATE_REQUIRED_MEMORY;\r
621                 traceTASK_CREATE_FAILED();\r
622         }\r
623 \r
624         if( xReturn == pdPASS )\r
625         {\r
626                 if( xSchedulerRunning != pdFALSE )\r
627                 {\r
628                         /* If the created task is of a higher priority than the current task\r
629                         then it should run now. */\r
630                         if( pxCurrentTCB->uxPriority < uxPriority )\r
631                         {\r
632                                 taskYIELD_IF_USING_PREEMPTION();\r
633                         }\r
634                 }\r
635         }\r
636 \r
637         return xReturn;\r
638 }\r
639 /*-----------------------------------------------------------*/\r
640 \r
641 #if ( INCLUDE_vTaskDelete == 1 )\r
642 \r
643         void vTaskDelete( xTaskHandle xTaskToDelete )\r
644         {\r
645         tskTCB *pxTCB;\r
646 \r
647                 taskENTER_CRITICAL();\r
648                 {\r
649                         /* If null is passed in here then we are deleting ourselves. */\r
650                         pxTCB = prvGetTCBFromHandle( xTaskToDelete );\r
651 \r
652                         /* Remove task from the ready list and place in the     termination list.\r
653                         This will stop the task from be scheduled.  The idle task will check\r
654                         the termination list and free up any memory allocated by the\r
655                         scheduler for the TCB and stack. */\r
656                         if( uxListRemove( &( pxTCB->xGenericListItem ) ) == ( unsigned portBASE_TYPE ) 0 )\r
657                         {\r
658                                 taskRESET_READY_PRIORITY( pxTCB->uxPriority );\r
659                         }\r
660 \r
661                         /* Is the task waiting on an event also? */\r
662                         if( listLIST_ITEM_CONTAINER( &( pxTCB->xEventListItem ) ) != NULL )\r
663                         {\r
664                                 ( void ) uxListRemove( &( pxTCB->xEventListItem ) );\r
665                         }\r
666 \r
667                         vListInsertEnd( &xTasksWaitingTermination, &( pxTCB->xGenericListItem ) );\r
668 \r
669                         /* Increment the ucTasksDeleted variable so the idle task knows\r
670                         there is a task that has been deleted and that it should therefore\r
671                         check the xTasksWaitingTermination list. */\r
672                         ++uxTasksDeleted;\r
673 \r
674                         /* Increment the uxTaskNumberVariable also so kernel aware debuggers\r
675                         can detect that the task lists need re-generating. */\r
676                         uxTaskNumber++;\r
677 \r
678                         traceTASK_DELETE( pxTCB );\r
679                 }\r
680                 taskEXIT_CRITICAL();\r
681 \r
682                 /* Force a reschedule if we have just deleted the current task. */\r
683                 if( xSchedulerRunning != pdFALSE )\r
684                 {\r
685                         if( pxTCB == pxCurrentTCB )\r
686                         {\r
687                                 portYIELD_WITHIN_API();\r
688                         }\r
689                 }\r
690         }\r
691 \r
692 #endif /* INCLUDE_vTaskDelete */\r
693 /*-----------------------------------------------------------*/\r
694 \r
695 #if ( INCLUDE_vTaskDelayUntil == 1 )\r
696 \r
697         void vTaskDelayUntil( portTickType * const pxPreviousWakeTime, portTickType xTimeIncrement )\r
698         {\r
699         portTickType xTimeToWake;\r
700         portBASE_TYPE xAlreadyYielded, xShouldDelay = pdFALSE;\r
701 \r
702                 configASSERT( pxPreviousWakeTime );\r
703                 configASSERT( ( xTimeIncrement > 0U ) );\r
704 \r
705                 vTaskSuspendAll();\r
706                 {\r
707                         /* Minor optimisation.  The tick count cannot change in this\r
708                         block. */\r
709                         const portTickType xConstTickCount = xTickCount;\r
710 \r
711                         /* Generate the tick time at which the task wants to wake. */\r
712                         xTimeToWake = *pxPreviousWakeTime + xTimeIncrement;\r
713 \r
714                         if( xConstTickCount < *pxPreviousWakeTime )\r
715                         {\r
716                                 /* The tick count has overflowed since this function was\r
717                                 lasted called.  In this case the only time we should ever\r
718                                 actually delay is if the wake time has also     overflowed,\r
719                                 and the wake time is greater than the tick time.  When this\r
720                                 is the case it is as if neither time had overflowed. */\r
721                                 if( ( xTimeToWake < *pxPreviousWakeTime ) && ( xTimeToWake > xConstTickCount ) )\r
722                                 {\r
723                                         xShouldDelay = pdTRUE;\r
724                                 }\r
725                         }\r
726                         else\r
727                         {\r
728                                 /* The tick time has not overflowed.  In this case we will\r
729                                 delay if either the wake time has overflowed, and/or the\r
730                                 tick time is less than the wake time. */\r
731                                 if( ( xTimeToWake < *pxPreviousWakeTime ) || ( xTimeToWake > xConstTickCount ) )\r
732                                 {\r
733                                         xShouldDelay = pdTRUE;\r
734                                 }\r
735                         }\r
736 \r
737                         /* Update the wake time ready for the next call. */\r
738                         *pxPreviousWakeTime = xTimeToWake;\r
739 \r
740                         if( xShouldDelay != pdFALSE )\r
741                         {\r
742                                 traceTASK_DELAY_UNTIL();\r
743 \r
744                                 /* We must remove ourselves from the ready list before adding\r
745                                 ourselves to the blocked list as the same list item is used for\r
746                                 both lists. */\r
747                                 if( uxListRemove( &( pxCurrentTCB->xGenericListItem ) ) == ( unsigned portBASE_TYPE ) 0 )\r
748                                 {\r
749                                         /* The current task must be in a ready list, so there is\r
750                                         no need to check, and the port reset macro can be called\r
751                                         directly. */\r
752                                         portRESET_READY_PRIORITY( pxCurrentTCB->uxPriority, uxTopReadyPriority );\r
753                                 }\r
754 \r
755                                 prvAddCurrentTaskToDelayedList( xTimeToWake );\r
756                         }\r
757                 }\r
758                 xAlreadyYielded = xTaskResumeAll();\r
759 \r
760                 /* Force a reschedule if xTaskResumeAll has not already done so, we may\r
761                 have put ourselves to sleep. */\r
762                 if( xAlreadyYielded == pdFALSE )\r
763                 {\r
764                         portYIELD_WITHIN_API();\r
765                 }\r
766         }\r
767 \r
768 #endif /* INCLUDE_vTaskDelayUntil */\r
769 /*-----------------------------------------------------------*/\r
770 \r
771 #if ( INCLUDE_vTaskDelay == 1 )\r
772 \r
773         void vTaskDelay( portTickType xTicksToDelay )\r
774         {\r
775         portTickType xTimeToWake;\r
776         signed portBASE_TYPE xAlreadyYielded = pdFALSE;\r
777 \r
778                 /* A delay time of zero just forces a reschedule. */\r
779                 if( xTicksToDelay > ( portTickType ) 0U )\r
780                 {\r
781                         vTaskSuspendAll();\r
782                         {\r
783                                 traceTASK_DELAY();\r
784 \r
785                                 /* A task that is removed from the event list while the\r
786                                 scheduler is suspended will not get placed in the ready\r
787                                 list or removed from the blocked list until the scheduler\r
788                                 is resumed.\r
789 \r
790                                 This task cannot be in an event list as it is the currently\r
791                                 executing task. */\r
792 \r
793                                 /* Calculate the time to wake - this may overflow but this is\r
794                                 not a problem. */\r
795                                 xTimeToWake = xTickCount + xTicksToDelay;\r
796 \r
797                                 /* We must remove ourselves from the ready list before adding\r
798                                 ourselves to the blocked list as the same list item is used for\r
799                                 both lists. */\r
800                                 if( uxListRemove( &( pxCurrentTCB->xGenericListItem ) ) == ( unsigned portBASE_TYPE ) 0 )\r
801                                 {\r
802                                         /* The current task must be in a ready list, so there is\r
803                                         no need to check, and the port reset macro can be called\r
804                                         directly. */\r
805                                         portRESET_READY_PRIORITY( pxCurrentTCB->uxPriority, uxTopReadyPriority );\r
806                                 }\r
807                                 prvAddCurrentTaskToDelayedList( xTimeToWake );\r
808                         }\r
809                         xAlreadyYielded = xTaskResumeAll();\r
810                 }\r
811 \r
812                 /* Force a reschedule if xTaskResumeAll has not already done so, we may\r
813                 have put ourselves to sleep. */\r
814                 if( xAlreadyYielded == pdFALSE )\r
815                 {\r
816                         portYIELD_WITHIN_API();\r
817                 }\r
818         }\r
819 \r
820 #endif /* INCLUDE_vTaskDelay */\r
821 /*-----------------------------------------------------------*/\r
822 \r
823 #if ( INCLUDE_eTaskGetState == 1 )\r
824 \r
825         eTaskState eTaskGetState( xTaskHandle xTask )\r
826         {\r
827         eTaskState eReturn;\r
828         xList *pxStateList;\r
829         const tskTCB * const pxTCB = ( tskTCB * ) xTask;\r
830 \r
831                 if( pxTCB == pxCurrentTCB )\r
832                 {\r
833                         /* The task calling this function is querying its own state. */\r
834                         eReturn = eRunning;\r
835                 }\r
836                 else\r
837                 {\r
838                         taskENTER_CRITICAL();\r
839                         {\r
840                                 pxStateList = ( xList * ) listLIST_ITEM_CONTAINER( &( pxTCB->xGenericListItem ) );\r
841                         }\r
842                         taskEXIT_CRITICAL();\r
843 \r
844                         if( ( pxStateList == pxDelayedTaskList ) || ( pxStateList == pxOverflowDelayedTaskList ) )\r
845                         {\r
846                                 /* The task being queried is referenced from one of the Blocked\r
847                                 lists. */\r
848                                 eReturn = eBlocked;\r
849                         }\r
850 \r
851                         #if ( INCLUDE_vTaskSuspend == 1 )\r
852                                 else if( pxStateList == &xSuspendedTaskList )\r
853                                 {\r
854                                         /* The task being queried is referenced from the suspended\r
855                                         list.  Is it genuinely suspended or is it block\r
856                                         indefinitely? */\r
857                                         if( listLIST_ITEM_CONTAINER( &( pxTCB->xEventListItem ) ) == NULL )\r
858                                         {\r
859                                                 eReturn = eSuspended;\r
860                                         }\r
861                                         else\r
862                                         {\r
863                                                 eReturn = eBlocked;\r
864                                         }\r
865                                 }\r
866                         #endif\r
867 \r
868                         #if ( INCLUDE_vTaskDelete == 1 )\r
869                                 else if( pxStateList == &xTasksWaitingTermination )\r
870                                 {\r
871                                         /* The task being queried is referenced from the deleted\r
872                                         tasks list. */\r
873                                         eReturn = eDeleted;\r
874                                 }\r
875                         #endif\r
876 \r
877                         else\r
878                         {\r
879                                 /* If the task is not in any other state, it must be in the\r
880                                 Ready (including pending ready) state. */\r
881                                 eReturn = eReady;\r
882                         }\r
883                 }\r
884 \r
885                 return eReturn;\r
886         }\r
887 \r
888 #endif /* INCLUDE_eTaskGetState */\r
889 /*-----------------------------------------------------------*/\r
890 \r
891 #if ( INCLUDE_uxTaskPriorityGet == 1 )\r
892 \r
893         unsigned portBASE_TYPE uxTaskPriorityGet( xTaskHandle xTask )\r
894         {\r
895         tskTCB *pxTCB;\r
896         unsigned portBASE_TYPE uxReturn;\r
897 \r
898                 taskENTER_CRITICAL();\r
899                 {\r
900                         /* If null is passed in here then we are changing the\r
901                         priority of the calling function. */\r
902                         pxTCB = prvGetTCBFromHandle( xTask );\r
903                         uxReturn = pxTCB->uxPriority;\r
904                 }\r
905                 taskEXIT_CRITICAL();\r
906 \r
907                 return uxReturn;\r
908         }\r
909 \r
910 #endif /* INCLUDE_uxTaskPriorityGet */\r
911 /*-----------------------------------------------------------*/\r
912 \r
913 #if ( INCLUDE_vTaskPrioritySet == 1 )\r
914 \r
915         void vTaskPrioritySet( xTaskHandle xTask, unsigned portBASE_TYPE uxNewPriority )\r
916         {\r
917         tskTCB *pxTCB;\r
918         unsigned portBASE_TYPE uxCurrentBasePriority, uxPriorityUsedOnEntry;\r
919         portBASE_TYPE xYieldRequired = pdFALSE;\r
920 \r
921                 configASSERT( ( uxNewPriority < configMAX_PRIORITIES ) );\r
922 \r
923                 /* Ensure the new priority is valid. */\r
924                 if( uxNewPriority >= ( unsigned portBASE_TYPE ) configMAX_PRIORITIES )\r
925                 {\r
926                         uxNewPriority = ( unsigned portBASE_TYPE ) configMAX_PRIORITIES - ( unsigned portBASE_TYPE ) 1U;\r
927                 }\r
928 \r
929                 taskENTER_CRITICAL();\r
930                 {\r
931                         /* If null is passed in here then it is the priority of the calling\r
932                         task that is being changed. */\r
933                         pxTCB = prvGetTCBFromHandle( xTask );\r
934 \r
935                         traceTASK_PRIORITY_SET( pxTCB, uxNewPriority );\r
936 \r
937                         #if ( configUSE_MUTEXES == 1 )\r
938                         {\r
939                                 uxCurrentBasePriority = pxTCB->uxBasePriority;\r
940                         }\r
941                         #else\r
942                         {\r
943                                 uxCurrentBasePriority = pxTCB->uxPriority;\r
944                         }\r
945                         #endif\r
946 \r
947                         if( uxCurrentBasePriority != uxNewPriority )\r
948                         {\r
949                                 /* The priority change may have readied a task of higher\r
950                                 priority than the calling task. */\r
951                                 if( uxNewPriority > uxCurrentBasePriority )\r
952                                 {\r
953                                         if( pxTCB != pxCurrentTCB )\r
954                                         {\r
955                                                 /* The priority of a task other than the currently\r
956                                                 running task is being raised.  Is the priority being\r
957                                                 raised above that of the running task? */\r
958                                                 if( uxNewPriority >= pxCurrentTCB->uxPriority )\r
959                                                 {\r
960                                                         xYieldRequired = pdTRUE;\r
961                                                 }\r
962                                         }\r
963                                         else\r
964                                         {\r
965                                                 /* The priority of the running task is being raised,\r
966                                                 but the running task must already be the highest\r
967                                                 priority task able to run so no yield is required. */\r
968                                         }\r
969                                 }\r
970                                 else if( pxTCB == pxCurrentTCB )\r
971                                 {\r
972                                         /* Setting the priority of the running task down means\r
973                                         there may now be another task of higher priority that\r
974                                         is ready to execute. */\r
975                                         xYieldRequired = pdTRUE;\r
976                                 }\r
977                                 else\r
978                                 {\r
979                                         /* Setting the priority of any other task down does not\r
980                                         require a yield as the running task must be above the\r
981                                         new priority of the task being modified. */\r
982                                 }\r
983 \r
984                                 /* Remember the ready list the task might be referenced from\r
985                                 before its uxPriority member is changed so the\r
986                                 taskRESET_READY_PRIORITY() macro can function correctly. */\r
987                                 uxPriorityUsedOnEntry = pxTCB->uxPriority;\r
988 \r
989                                 #if ( configUSE_MUTEXES == 1 )\r
990                                 {\r
991                                         /* Only change the priority being used if the task is not\r
992                                         currently using an inherited priority. */\r
993                                         if( pxTCB->uxBasePriority == pxTCB->uxPriority )\r
994                                         {\r
995                                                 pxTCB->uxPriority = uxNewPriority;\r
996                                         }\r
997 \r
998                                         /* The base priority gets set whatever. */\r
999                                         pxTCB->uxBasePriority = uxNewPriority;\r
1000                                 }\r
1001                                 #else\r
1002                                 {\r
1003                                         pxTCB->uxPriority = uxNewPriority;\r
1004                                 }\r
1005                                 #endif\r
1006 \r
1007                                 listSET_LIST_ITEM_VALUE( &( pxTCB->xEventListItem ), ( ( portTickType ) configMAX_PRIORITIES - ( portTickType ) uxNewPriority ) ); /*lint !e961 MISRA exception as the casts are only redundant for some ports. */\r
1008 \r
1009                                 /* If the task is in the blocked or suspended list we need do\r
1010                                 nothing more than change it's priority variable. However, if\r
1011                                 the task is in a ready list it needs to be removed and placed\r
1012                                 in the list appropriate to its new priority. */\r
1013                                 if( listIS_CONTAINED_WITHIN( &( pxReadyTasksLists[ uxPriorityUsedOnEntry ] ), &( pxTCB->xGenericListItem ) ) != pdFALSE )\r
1014                                 {\r
1015                                         /* The task is currently in its ready list - remove before adding\r
1016                                         it to it's new ready list.  As we are in a critical section we\r
1017                                         can do this even if the scheduler is suspended. */\r
1018                                         if( uxListRemove( &( pxTCB->xGenericListItem ) ) == ( unsigned portBASE_TYPE ) 0 )\r
1019                                         {\r
1020                                                 /* It is known that the task is in its ready list so\r
1021                                                 there is no need to check again and the port level\r
1022                                                 reset macro can be called directly. */\r
1023                                                 portRESET_READY_PRIORITY( uxPriorityUsedOnEntry, uxTopReadyPriority );\r
1024                                         }\r
1025                                         prvAddTaskToReadyList( pxTCB );\r
1026                                 }\r
1027 \r
1028                                 if( xYieldRequired == pdTRUE )\r
1029                                 {\r
1030                                         taskYIELD_IF_USING_PREEMPTION();\r
1031                                 }\r
1032 \r
1033                                 /* Remove compiler warning about unused variables when the port\r
1034                                 optimised task selection is not being used. */\r
1035                                 ( void ) uxPriorityUsedOnEntry;\r
1036                         }\r
1037                 }\r
1038                 taskEXIT_CRITICAL();\r
1039         }\r
1040 \r
1041 #endif /* INCLUDE_vTaskPrioritySet */\r
1042 /*-----------------------------------------------------------*/\r
1043 \r
1044 #if ( INCLUDE_vTaskSuspend == 1 )\r
1045 \r
1046         void vTaskSuspend( xTaskHandle xTaskToSuspend )\r
1047         {\r
1048         tskTCB *pxTCB;\r
1049 \r
1050                 taskENTER_CRITICAL();\r
1051                 {\r
1052                         /* If null is passed in here then it is the running task that is\r
1053                         being suspended. */\r
1054                         pxTCB = prvGetTCBFromHandle( xTaskToSuspend );\r
1055 \r
1056                         traceTASK_SUSPEND( pxTCB );\r
1057 \r
1058                         /* Remove task from the ready/delayed list and place in the     suspended list. */\r
1059                         if( uxListRemove( &( pxTCB->xGenericListItem ) ) == ( unsigned portBASE_TYPE ) 0 )\r
1060                         {\r
1061                                 taskRESET_READY_PRIORITY( pxTCB->uxPriority );\r
1062                         }\r
1063 \r
1064                         /* Is the task waiting on an event also? */\r
1065                         if( listLIST_ITEM_CONTAINER( &( pxTCB->xEventListItem ) ) != NULL )\r
1066                         {\r
1067                                 ( void ) uxListRemove( &( pxTCB->xEventListItem ) );\r
1068                         }\r
1069 \r
1070                         vListInsertEnd( &xSuspendedTaskList, &( pxTCB->xGenericListItem ) );\r
1071                 }\r
1072                 taskEXIT_CRITICAL();\r
1073 \r
1074                 if( pxTCB == pxCurrentTCB )\r
1075                 {\r
1076                         if( xSchedulerRunning != pdFALSE )\r
1077                         {\r
1078                                 /* The current task has just been suspended. */\r
1079                                 portYIELD_WITHIN_API();\r
1080                         }\r
1081                         else\r
1082                         {\r
1083                                 /* The scheduler is not running, but the task that was pointed\r
1084                                 to by pxCurrentTCB has just been suspended and pxCurrentTCB\r
1085                                 must be adjusted to point to a different task. */\r
1086                                 if( listCURRENT_LIST_LENGTH( &xSuspendedTaskList ) == uxCurrentNumberOfTasks )\r
1087                                 {\r
1088                                         /* No other tasks are ready, so set pxCurrentTCB back to\r
1089                                         NULL so when the next task is created pxCurrentTCB will\r
1090                                         be set to point to it no matter what its relative priority\r
1091                                         is. */\r
1092                                         pxCurrentTCB = NULL;\r
1093                                 }\r
1094                                 else\r
1095                                 {\r
1096                                         vTaskSwitchContext();\r
1097                                 }\r
1098                         }\r
1099                 }\r
1100         }\r
1101 \r
1102 #endif /* INCLUDE_vTaskSuspend */\r
1103 /*-----------------------------------------------------------*/\r
1104 \r
1105 #if ( INCLUDE_vTaskSuspend == 1 )\r
1106 \r
1107         signed portBASE_TYPE xTaskIsTaskSuspended( xTaskHandle xTask )\r
1108         {\r
1109         portBASE_TYPE xReturn = pdFALSE;\r
1110         const tskTCB * const pxTCB = ( tskTCB * ) xTask;\r
1111 \r
1112                 /* It does not make sense to check if the calling task is suspended. */\r
1113                 configASSERT( xTask );\r
1114 \r
1115                 /* Is the task we are attempting to resume actually in the\r
1116                 suspended list? */\r
1117                 if( listIS_CONTAINED_WITHIN( &xSuspendedTaskList, &( pxTCB->xGenericListItem ) ) != pdFALSE )\r
1118                 {\r
1119                         /* Has the task already been resumed from within an ISR? */\r
1120                         if( listIS_CONTAINED_WITHIN( &xPendingReadyList, &( pxTCB->xEventListItem ) ) == pdFALSE )\r
1121                         {\r
1122                                 /* Is it in the suspended list because it is in the\r
1123                                 Suspended state?  It is possible to be in the suspended\r
1124                                 list because it is blocked on a task with no timeout\r
1125                                 specified. */\r
1126                                 if( listIS_CONTAINED_WITHIN( NULL, &( pxTCB->xEventListItem ) ) != pdFALSE )\r
1127                                 {\r
1128                                         xReturn = pdTRUE;\r
1129                                 }\r
1130                         }\r
1131                 }\r
1132 \r
1133                 return xReturn;\r
1134         } /*lint !e818 xTask cannot be a pointer to const because it is a typedef. */\r
1135 \r
1136 #endif /* INCLUDE_vTaskSuspend */\r
1137 /*-----------------------------------------------------------*/\r
1138 \r
1139 #if ( INCLUDE_vTaskSuspend == 1 )\r
1140 \r
1141         void vTaskResume( xTaskHandle xTaskToResume )\r
1142         {\r
1143         tskTCB * const pxTCB = ( tskTCB * ) xTaskToResume;\r
1144 \r
1145                 /* It does not make sense to resume the calling task. */\r
1146                 configASSERT( xTaskToResume );\r
1147 \r
1148                 /* The parameter cannot be NULL as it is impossible to resume the\r
1149                 currently executing task. */\r
1150                 if( ( pxTCB != NULL ) && ( pxTCB != pxCurrentTCB ) )\r
1151                 {\r
1152                         taskENTER_CRITICAL();\r
1153                         {\r
1154                                 if( xTaskIsTaskSuspended( pxTCB ) == pdTRUE )\r
1155                                 {\r
1156                                         traceTASK_RESUME( pxTCB );\r
1157 \r
1158                                         /* As we are in a critical section we can access the ready\r
1159                                         lists even if the scheduler is suspended. */\r
1160                                         ( void ) uxListRemove(  &( pxTCB->xGenericListItem ) );\r
1161                                         prvAddTaskToReadyList( pxTCB );\r
1162 \r
1163                                         /* We may have just resumed a higher priority task. */\r
1164                                         if( pxTCB->uxPriority >= pxCurrentTCB->uxPriority )\r
1165                                         {\r
1166                                                 /* This yield may not cause the task just resumed to run,\r
1167                                                 but will leave the lists in the correct state for the\r
1168                                                 next yield. */\r
1169                                                 taskYIELD_IF_USING_PREEMPTION();\r
1170                                         }\r
1171                                 }\r
1172                         }\r
1173                         taskEXIT_CRITICAL();\r
1174                 }\r
1175         }\r
1176 \r
1177 #endif /* INCLUDE_vTaskSuspend */\r
1178 \r
1179 /*-----------------------------------------------------------*/\r
1180 \r
1181 #if ( ( INCLUDE_xTaskResumeFromISR == 1 ) && ( INCLUDE_vTaskSuspend == 1 ) )\r
1182 \r
1183         portBASE_TYPE xTaskResumeFromISR( xTaskHandle xTaskToResume )\r
1184         {\r
1185         portBASE_TYPE xYieldRequired = pdFALSE;\r
1186         tskTCB * const pxTCB = ( tskTCB * ) xTaskToResume;\r
1187         unsigned portBASE_TYPE uxSavedInterruptStatus;\r
1188 \r
1189                 configASSERT( xTaskToResume );\r
1190 \r
1191                 /* RTOS ports that support interrupt nesting have the concept of a\r
1192                 maximum system call (or maximum API call) interrupt priority.\r
1193                 Interrupts that are     above the maximum system call priority are keep\r
1194                 permanently enabled, even when the RTOS kernel is in a critical section,\r
1195                 but cannot make any calls to FreeRTOS API functions.  If configASSERT()\r
1196                 is defined in FreeRTOSConfig.h then\r
1197                 portASSERT_IF_INTERRUPT_PRIORITY_INVALID() will result in an assertion\r
1198                 failure if a FreeRTOS API function is called from an interrupt that has\r
1199                 been assigned a priority above the configured maximum system call\r
1200                 priority.  Only FreeRTOS functions that end in FromISR can be called\r
1201                 from interrupts that have been assigned a priority at or (logically)\r
1202                 below the maximum system call interrupt priority.  FreeRTOS maintains a\r
1203                 separate interrupt safe API to ensure interrupt entry is as fast and as\r
1204                 simple as possible.  More information (albeit Cortex-M specific) is\r
1205                 provided on the following link:\r
1206                 http://www.freertos.org/RTOS-Cortex-M3-M4.html */\r
1207                 portASSERT_IF_INTERRUPT_PRIORITY_INVALID();\r
1208 \r
1209                 uxSavedInterruptStatus = portSET_INTERRUPT_MASK_FROM_ISR();\r
1210                 {\r
1211                         if( xTaskIsTaskSuspended( pxTCB ) == pdTRUE )\r
1212                         {\r
1213                                 traceTASK_RESUME_FROM_ISR( pxTCB );\r
1214 \r
1215                                 if( uxSchedulerSuspended == ( unsigned portBASE_TYPE ) pdFALSE )\r
1216                                 {\r
1217                                         if( pxTCB->uxPriority >= pxCurrentTCB->uxPriority )\r
1218                                         {\r
1219                                                 xYieldRequired = pdTRUE;\r
1220                                         }\r
1221 \r
1222                                         ( void ) uxListRemove(  &( pxTCB->xGenericListItem ) );\r
1223                                         prvAddTaskToReadyList( pxTCB );\r
1224                                 }\r
1225                                 else\r
1226                                 {\r
1227                                         /* We cannot access the delayed or ready lists, so will hold this\r
1228                                         task pending until the scheduler is resumed, at which point a\r
1229                                         yield will be performed if necessary. */\r
1230                                         vListInsertEnd( &( xPendingReadyList ), &( pxTCB->xEventListItem ) );\r
1231                                 }\r
1232                         }\r
1233                 }\r
1234                 portCLEAR_INTERRUPT_MASK_FROM_ISR( uxSavedInterruptStatus );\r
1235 \r
1236                 return xYieldRequired;\r
1237         }\r
1238 \r
1239 #endif /* ( ( INCLUDE_xTaskResumeFromISR == 1 ) && ( INCLUDE_vTaskSuspend == 1 ) ) */\r
1240 /*-----------------------------------------------------------*/\r
1241 \r
1242 void vTaskStartScheduler( void )\r
1243 {\r
1244 portBASE_TYPE xReturn;\r
1245 \r
1246         /* Add the idle task at the lowest priority. */\r
1247         #if ( INCLUDE_xTaskGetIdleTaskHandle == 1 )\r
1248         {\r
1249                 /* Create the idle task, storing its handle in xIdleTaskHandle so it can\r
1250                 be returned by the xTaskGetIdleTaskHandle() function. */\r
1251                 xReturn = xTaskCreate( prvIdleTask, ( signed char * ) "IDLE", tskIDLE_STACK_SIZE, ( void * ) NULL, ( tskIDLE_PRIORITY | portPRIVILEGE_BIT ), &xIdleTaskHandle ); /*lint !e961 MISRA exception, justified as it is not a redundant explicit cast to all supported compilers. */\r
1252         }\r
1253         #else\r
1254         {\r
1255                 /* Create the idle task without storing its handle. */\r
1256                 xReturn = xTaskCreate( prvIdleTask, ( signed char * ) "IDLE", tskIDLE_STACK_SIZE, ( void * ) NULL, ( tskIDLE_PRIORITY | portPRIVILEGE_BIT ), NULL );  /*lint !e961 MISRA exception, justified as it is not a redundant explicit cast to all supported compilers. */\r
1257         }\r
1258         #endif /* INCLUDE_xTaskGetIdleTaskHandle */\r
1259 \r
1260         #if ( configUSE_TIMERS == 1 )\r
1261         {\r
1262                 if( xReturn == pdPASS )\r
1263                 {\r
1264                         xReturn = xTimerCreateTimerTask();\r
1265                 }\r
1266         }\r
1267         #endif /* configUSE_TIMERS */\r
1268 \r
1269         if( xReturn == pdPASS )\r
1270         {\r
1271                 /* Interrupts are turned off here, to ensure a tick does not occur\r
1272                 before or during the call to xPortStartScheduler().  The stacks of\r
1273                 the created tasks contain a status word with interrupts switched on\r
1274                 so interrupts will automatically get re-enabled when the first task\r
1275                 starts to run. */\r
1276                 portDISABLE_INTERRUPTS();\r
1277 \r
1278                 #if ( configUSE_NEWLIB_REENTRANT == 1 )\r
1279                 {\r
1280                         /* Switch Newlib's _impure_ptr variable to point to the _reent\r
1281                         structure specific to the task that will run first. */\r
1282                         _impure_ptr = &( pxCurrentTCB->xNewLib_reent );\r
1283                 }\r
1284                 #endif /* configUSE_NEWLIB_REENTRANT */\r
1285 \r
1286                 xSchedulerRunning = pdTRUE;\r
1287                 xTickCount = ( portTickType ) 0U;\r
1288 \r
1289                 /* If configGENERATE_RUN_TIME_STATS is defined then the following\r
1290                 macro must be defined to configure the timer/counter used to generate\r
1291                 the run time counter time base. */\r
1292                 portCONFIGURE_TIMER_FOR_RUN_TIME_STATS();\r
1293 \r
1294                 /* Setting up the timer tick is hardware specific and thus in the\r
1295                 portable interface. */\r
1296                 if( xPortStartScheduler() != pdFALSE )\r
1297                 {\r
1298                         /* Should not reach here as if the scheduler is running the\r
1299                         function will not return. */\r
1300                 }\r
1301                 else\r
1302                 {\r
1303                         /* Should only reach here if a task calls xTaskEndScheduler(). */\r
1304                 }\r
1305         }\r
1306         else\r
1307         {\r
1308                 /* This line will only be reached if the kernel could not be started,\r
1309                 because there was not enough FreeRTOS heap to create the idle task\r
1310                 or the timer task. */\r
1311                 configASSERT( xReturn );\r
1312         }\r
1313 }\r
1314 /*-----------------------------------------------------------*/\r
1315 \r
1316 void vTaskEndScheduler( void )\r
1317 {\r
1318         /* Stop the scheduler interrupts and call the portable scheduler end\r
1319         routine so the original ISRs can be restored if necessary.  The port\r
1320         layer must ensure interrupts enable     bit is left in the correct state. */\r
1321         portDISABLE_INTERRUPTS();\r
1322         xSchedulerRunning = pdFALSE;\r
1323         vPortEndScheduler();\r
1324 }\r
1325 /*----------------------------------------------------------*/\r
1326 \r
1327 void vTaskSuspendAll( void )\r
1328 {\r
1329         /* A critical section is not required as the variable is of type\r
1330         portBASE_TYPE. */\r
1331         ++uxSchedulerSuspended;\r
1332 }\r
1333 /*----------------------------------------------------------*/\r
1334 \r
1335 #if ( configUSE_TICKLESS_IDLE != 0 )\r
1336 \r
1337         static portTickType prvGetExpectedIdleTime( void )\r
1338         {\r
1339         portTickType xReturn;\r
1340 \r
1341                 if( pxCurrentTCB->uxPriority > tskIDLE_PRIORITY )\r
1342                 {\r
1343                         xReturn = 0;\r
1344                 }\r
1345                 else if( listCURRENT_LIST_LENGTH( &( pxReadyTasksLists[ tskIDLE_PRIORITY ] ) ) > 1 )\r
1346                 {\r
1347                         /* There are other idle priority tasks in the ready state.  If\r
1348                         time slicing is used then the very next tick interrupt must be\r
1349                         processed. */\r
1350                         xReturn = 0;\r
1351                 }\r
1352                 else\r
1353                 {\r
1354                         xReturn = xNextTaskUnblockTime - xTickCount;\r
1355                 }\r
1356 \r
1357                 return xReturn;\r
1358         }\r
1359 \r
1360 #endif /* configUSE_TICKLESS_IDLE */\r
1361 /*----------------------------------------------------------*/\r
1362 \r
1363 signed portBASE_TYPE xTaskResumeAll( void )\r
1364 {\r
1365 tskTCB *pxTCB;\r
1366 portBASE_TYPE xAlreadyYielded = pdFALSE;\r
1367 \r
1368         /* If uxSchedulerSuspended is zero then this function does not match a\r
1369         previous call to vTaskSuspendAll(). */\r
1370         configASSERT( uxSchedulerSuspended );\r
1371 \r
1372         /* It is possible that an ISR caused a task to be removed from an event\r
1373         list while the scheduler was suspended.  If this was the case then the\r
1374         removed task will have been added to the xPendingReadyList.  Once the\r
1375         scheduler has been resumed it is safe to move all the pending ready\r
1376         tasks from this list into their appropriate ready list. */\r
1377         taskENTER_CRITICAL();\r
1378         {\r
1379                 --uxSchedulerSuspended;\r
1380 \r
1381                 if( uxSchedulerSuspended == ( unsigned portBASE_TYPE ) pdFALSE )\r
1382                 {\r
1383                         if( uxCurrentNumberOfTasks > ( unsigned portBASE_TYPE ) 0U )\r
1384                         {\r
1385                                 /* Move any readied tasks from the pending list into the\r
1386                                 appropriate ready list. */\r
1387                                 while( listLIST_IS_EMPTY( &xPendingReadyList ) == pdFALSE )\r
1388                                 {\r
1389                                         pxTCB = ( tskTCB * ) listGET_OWNER_OF_HEAD_ENTRY( ( &xPendingReadyList ) );\r
1390                                         ( void ) uxListRemove( &( pxTCB->xEventListItem ) );\r
1391                                         ( void ) uxListRemove( &( pxTCB->xGenericListItem ) );\r
1392                                         prvAddTaskToReadyList( pxTCB );\r
1393 \r
1394                                         /* If we have moved a task that has a priority higher than\r
1395                                         the current task then we should yield. */\r
1396                                         if( pxTCB->uxPriority >= pxCurrentTCB->uxPriority )\r
1397                                         {\r
1398                                                 xYieldPending = pdTRUE;\r
1399                                         }\r
1400                                 }\r
1401 \r
1402                                 /* If any ticks occurred while the scheduler was suspended then\r
1403                                 they should be processed now.  This ensures the tick count does not\r
1404                                 slip, and that any delayed tasks are resumed at the correct time. */\r
1405                                 if( uxPendedTicks > ( unsigned portBASE_TYPE ) 0U )\r
1406                                 {\r
1407                                         while( uxPendedTicks > ( unsigned portBASE_TYPE ) 0U )\r
1408                                         {\r
1409                                                 if( xTaskIncrementTick() != pdFALSE )\r
1410                                                 {\r
1411                                                         xYieldPending = pdTRUE;\r
1412                                                 }\r
1413                                                 --uxPendedTicks;\r
1414                                         }\r
1415                                 }\r
1416 \r
1417                                 if( xYieldPending == pdTRUE )\r
1418                                 {\r
1419                                         #if( configUSE_PREEMPTION != 0 )\r
1420                                         {\r
1421                                                 xAlreadyYielded = pdTRUE;\r
1422                                         }\r
1423                                         #endif\r
1424                                         taskYIELD_IF_USING_PREEMPTION();\r
1425                                 }\r
1426                         }\r
1427                 }\r
1428         }\r
1429         taskEXIT_CRITICAL();\r
1430 \r
1431         return xAlreadyYielded;\r
1432 }\r
1433 /*-----------------------------------------------------------*/\r
1434 \r
1435 portTickType xTaskGetTickCount( void )\r
1436 {\r
1437 portTickType xTicks;\r
1438 \r
1439         /* Critical section required if running on a 16 bit processor. */\r
1440         taskENTER_CRITICAL();\r
1441         {\r
1442                 xTicks = xTickCount;\r
1443         }\r
1444         taskEXIT_CRITICAL();\r
1445 \r
1446         return xTicks;\r
1447 }\r
1448 /*-----------------------------------------------------------*/\r
1449 \r
1450 portTickType xTaskGetTickCountFromISR( void )\r
1451 {\r
1452 portTickType xReturn;\r
1453 unsigned portBASE_TYPE uxSavedInterruptStatus;\r
1454 \r
1455         /* RTOS ports that support interrupt nesting have the concept of a maximum\r
1456         system call (or maximum API call) interrupt priority.  Interrupts that are\r
1457         above the maximum system call priority are keep permanently enabled, even\r
1458         when the RTOS kernel is in a critical section, but cannot make any calls to\r
1459         FreeRTOS API functions.  If configASSERT() is defined in FreeRTOSConfig.h\r
1460         then portASSERT_IF_INTERRUPT_PRIORITY_INVALID() will result in an assertion\r
1461         failure if a FreeRTOS API function is called from an interrupt that has been\r
1462         assigned a priority above the configured maximum system call priority.\r
1463         Only FreeRTOS functions that end in FromISR can be called from interrupts\r
1464         that have been assigned a priority at or (logically) below the maximum\r
1465         system call     interrupt priority.  FreeRTOS maintains a separate interrupt\r
1466         safe API to ensure interrupt entry is as fast and as simple as possible.\r
1467         More information (albeit Cortex-M specific) is provided on the following\r
1468         link: http://www.freertos.org/RTOS-Cortex-M3-M4.html */\r
1469         portASSERT_IF_INTERRUPT_PRIORITY_INVALID();\r
1470 \r
1471         uxSavedInterruptStatus = portSET_INTERRUPT_MASK_FROM_ISR();\r
1472         xReturn = xTickCount;\r
1473         portCLEAR_INTERRUPT_MASK_FROM_ISR( uxSavedInterruptStatus );\r
1474 \r
1475         return xReturn;\r
1476 }\r
1477 /*-----------------------------------------------------------*/\r
1478 \r
1479 unsigned portBASE_TYPE uxTaskGetNumberOfTasks( void )\r
1480 {\r
1481         /* A critical section is not required because the variables are of type\r
1482         portBASE_TYPE. */\r
1483         return uxCurrentNumberOfTasks;\r
1484 }\r
1485 /*-----------------------------------------------------------*/\r
1486 \r
1487 #if ( INCLUDE_pcTaskGetTaskName == 1 )\r
1488 \r
1489         signed char *pcTaskGetTaskName( xTaskHandle xTaskToQuery )\r
1490         {\r
1491         tskTCB *pxTCB;\r
1492 \r
1493                 /* If null is passed in here then the name of the calling task is being queried. */\r
1494                 pxTCB = prvGetTCBFromHandle( xTaskToQuery );\r
1495                 configASSERT( pxTCB );\r
1496                 return &( pxTCB->pcTaskName[ 0 ] );\r
1497         }\r
1498 \r
1499 #endif /* INCLUDE_pcTaskGetTaskName */\r
1500 /*-----------------------------------------------------------*/\r
1501 \r
1502 #if ( configUSE_TRACE_FACILITY == 1 )\r
1503 \r
1504         unsigned portBASE_TYPE uxTaskGetSystemState( xTaskStatusType *pxTaskStatusArray, unsigned portBASE_TYPE uxArraySize, unsigned long *pulTotalRunTime )\r
1505         {\r
1506         unsigned portBASE_TYPE uxTask = 0, uxQueue = configMAX_PRIORITIES;\r
1507 \r
1508                 vTaskSuspendAll();\r
1509                 {\r
1510                         /* Is there a space in the array for each task in the system? */\r
1511                         if( uxArraySize >= uxCurrentNumberOfTasks )\r
1512                         {\r
1513                                 /* Fill in an xTaskStatusType structure with information on each\r
1514                                 task in the Ready state. */\r
1515                                 do\r
1516                                 {\r
1517                                         uxQueue--;\r
1518                                         uxTask += prvListTaskWithinSingleList( &( pxTaskStatusArray[ uxTask ] ), &( pxReadyTasksLists[ uxQueue ] ), eReady );\r
1519 \r
1520                                 } while( uxQueue > ( unsigned portBASE_TYPE ) tskIDLE_PRIORITY ); /*lint !e961 MISRA exception as the casts are only redundant for some ports. */\r
1521 \r
1522                                 /* Fill in an xTaskStatusType structure with information on each\r
1523                                 task in the Blocked state. */\r
1524                                 uxTask += prvListTaskWithinSingleList( &( pxTaskStatusArray[ uxTask ] ), ( xList * ) pxDelayedTaskList, eBlocked );\r
1525                                 uxTask += prvListTaskWithinSingleList( &( pxTaskStatusArray[ uxTask ] ), ( xList * ) pxOverflowDelayedTaskList, eBlocked );\r
1526 \r
1527                                 #if( INCLUDE_vTaskDelete == 1 )\r
1528                                 {\r
1529                                         /* Fill in an xTaskStatusType structure with information on\r
1530                                         each task that has been deleted but not yet cleaned up. */\r
1531                                         uxTask += prvListTaskWithinSingleList( &( pxTaskStatusArray[ uxTask ] ), &xTasksWaitingTermination, eDeleted );\r
1532                                 }\r
1533                                 #endif\r
1534 \r
1535                                 #if ( INCLUDE_vTaskSuspend == 1 )\r
1536                                 {\r
1537                                         /* Fill in an xTaskStatusType structure with information on\r
1538                                         each task in the Suspended state. */\r
1539                                         uxTask += prvListTaskWithinSingleList( &( pxTaskStatusArray[ uxTask ] ), &xSuspendedTaskList, eSuspended );\r
1540                                 }\r
1541                                 #endif\r
1542 \r
1543                                 #if ( configGENERATE_RUN_TIME_STATS == 1)\r
1544                                 {\r
1545                                         if( pulTotalRunTime != NULL )\r
1546                                         {\r
1547                                                 #ifdef portALT_GET_RUN_TIME_COUNTER_VALUE\r
1548                                                         portALT_GET_RUN_TIME_COUNTER_VALUE( ( *pulTotalRunTime ) );\r
1549                                                 #else\r
1550                                                         *pulTotalRunTime = portGET_RUN_TIME_COUNTER_VALUE();\r
1551                                                 #endif\r
1552                                         }\r
1553                                 }\r
1554                                 #else\r
1555                                 {\r
1556                                         if( pulTotalRunTime != NULL )\r
1557                                         {\r
1558                                                 *pulTotalRunTime = 0;\r
1559                                         }\r
1560                                 }\r
1561                                 #endif\r
1562                         }\r
1563                 }\r
1564                 ( void ) xTaskResumeAll();\r
1565 \r
1566                 return uxTask;\r
1567         }\r
1568 \r
1569 #endif /* configUSE_TRACE_FACILITY */\r
1570 /*----------------------------------------------------------*/\r
1571 \r
1572 #if ( INCLUDE_xTaskGetIdleTaskHandle == 1 )\r
1573 \r
1574         xTaskHandle xTaskGetIdleTaskHandle( void )\r
1575         {\r
1576                 /* If xTaskGetIdleTaskHandle() is called before the scheduler has been\r
1577                 started, then xIdleTaskHandle will be NULL. */\r
1578                 configASSERT( ( xIdleTaskHandle != NULL ) );\r
1579                 return xIdleTaskHandle;\r
1580         }\r
1581 \r
1582 #endif /* INCLUDE_xTaskGetIdleTaskHandle */\r
1583 /*----------------------------------------------------------*/\r
1584 \r
1585 /* This conditional compilation should use inequality to 0, not equality to 1.\r
1586 This is to ensure vTaskStepTick() is available when user defined low power mode\r
1587 implementations require configUSE_TICKLESS_IDLE to be set to a value other than\r
1588 1. */\r
1589 #if ( configUSE_TICKLESS_IDLE != 0 )\r
1590 \r
1591         void vTaskStepTick( portTickType xTicksToJump )\r
1592         {\r
1593                 /* Correct the tick count value after a period during which the tick\r
1594                 was suppressed.  Note this does *not* call the tick hook function for\r
1595                 each stepped tick. */\r
1596                 configASSERT( ( xTickCount + xTicksToJump ) <= xNextTaskUnblockTime );\r
1597                 xTickCount += xTicksToJump;\r
1598                 traceINCREASE_TICK_COUNT( xTicksToJump );\r
1599         }\r
1600 \r
1601 #endif /* configUSE_TICKLESS_IDLE */\r
1602 /*----------------------------------------------------------*/\r
1603 \r
1604 portBASE_TYPE xTaskIncrementTick( void )\r
1605 {\r
1606 tskTCB * pxTCB;\r
1607 portTickType xItemValue;\r
1608 portBASE_TYPE xSwitchRequired = pdFALSE;\r
1609 \r
1610         /* Called by the portable layer each time a tick interrupt occurs.\r
1611         Increments the tick then checks to see if the new tick value will cause any\r
1612         tasks to be unblocked. */\r
1613         traceTASK_INCREMENT_TICK( xTickCount );\r
1614         if( uxSchedulerSuspended == ( unsigned portBASE_TYPE ) pdFALSE )\r
1615         {\r
1616                 /* Increment the RTOS tick, switching the delayed and overflowed\r
1617                 delayed lists if it wraps to 0. */\r
1618                 ++xTickCount;\r
1619 \r
1620                 {\r
1621                         /* Minor optimisation.  The tick count cannot change in this\r
1622                         block. */\r
1623                         const portTickType xConstTickCount = xTickCount;\r
1624 \r
1625                         if( xConstTickCount == ( portTickType ) 0U )\r
1626                         {\r
1627                                 taskSWITCH_DELAYED_LISTS();\r
1628                         }\r
1629 \r
1630                         /* See if this tick has made a timeout expire.  Tasks are stored in the\r
1631                         queue in the order of their wake time - meaning once one tasks has been\r
1632                         found whose block time has not expired there is no need not look any\r
1633                         further down the list. */\r
1634                         if( xConstTickCount >= xNextTaskUnblockTime )\r
1635                         {\r
1636                                 for( ;; )\r
1637                                 {\r
1638                                         if( listLIST_IS_EMPTY( pxDelayedTaskList ) != pdFALSE )\r
1639                                         {\r
1640                                                 /* The delayed list is empty.  Set xNextTaskUnblockTime to\r
1641                                                 the     maximum possible value so it is extremely unlikely that\r
1642                                                 the if( xTickCount >= xNextTaskUnblockTime ) test will pass\r
1643                                                 next time through. */\r
1644                                                 xNextTaskUnblockTime = portMAX_DELAY;\r
1645                                                 break;\r
1646                                         }\r
1647                                         else\r
1648                                         {\r
1649                                                 /* The delayed list is not empty, get the value of the item\r
1650                                                 at the head of the delayed list.  This is the time at which\r
1651                                                 the task at the head of the delayed list must be removed\r
1652                                                 from the Blocked state. */\r
1653                                                 pxTCB = ( tskTCB * ) listGET_OWNER_OF_HEAD_ENTRY( pxDelayedTaskList );\r
1654                                                 xItemValue = listGET_LIST_ITEM_VALUE( &( pxTCB->xGenericListItem ) );\r
1655 \r
1656                                                 if( xConstTickCount < xItemValue )\r
1657                                                 {\r
1658                                                         /* It is not time to unblock this item yet, but the item\r
1659                                                         value is the time at which the task at the head of the\r
1660                                                         blocked list must be removed from the Blocked state -\r
1661                                                         so record the item value in xNextTaskUnblockTime. */\r
1662                                                         xNextTaskUnblockTime = xItemValue;\r
1663                                                         break;\r
1664                                                 }\r
1665 \r
1666                                                 /* It is time to remove the item from the Blocked state. */\r
1667                                                 ( void ) uxListRemove( &( pxTCB->xGenericListItem ) );\r
1668 \r
1669                                                 /* Is the task waiting on an event also?  If so remove it\r
1670                                                 from the event list. */\r
1671                                                 if( listLIST_ITEM_CONTAINER( &( pxTCB->xEventListItem ) ) != NULL )\r
1672                                                 {\r
1673                                                         ( void ) uxListRemove( &( pxTCB->xEventListItem ) );\r
1674                                                 }\r
1675 \r
1676                                                 /* Place the unblocked task into the appropriate ready\r
1677                                                 list. */\r
1678                                                 prvAddTaskToReadyList( pxTCB );\r
1679 \r
1680                                                 /* A task being unblocked cannot cause an immediate context\r
1681                                                 switch if preemption is turned off. */\r
1682                                                 #if (  configUSE_PREEMPTION == 1 )\r
1683                                                 {\r
1684                                                         /* Preemption is on, but a context switch should only\r
1685                                                         be performed if the unblocked task has a priority that\r
1686                                                         is equal to or higher than the currently executing\r
1687                                                         task. */\r
1688                                                         if( pxTCB->uxPriority >= pxCurrentTCB->uxPriority )\r
1689                                                         {\r
1690                                                                 xSwitchRequired = pdTRUE;\r
1691                                                         }\r
1692                                                 }\r
1693                                                 #endif /* configUSE_PREEMPTION */\r
1694                                         }\r
1695                                 }\r
1696                         }\r
1697                 }\r
1698 \r
1699                 /* Tasks of equal priority to the currently running task will share\r
1700                 processing time (time slice) if preemption is on, and the application\r
1701                 writer has not explicitly turned time slicing off. */\r
1702                 #if ( ( configUSE_PREEMPTION == 1 ) && ( configUSE_TIME_SLICING == 1 ) )\r
1703                 {\r
1704                         if( listCURRENT_LIST_LENGTH( &( pxReadyTasksLists[ pxCurrentTCB->uxPriority ] ) ) > ( unsigned portBASE_TYPE ) 1 )\r
1705                         {\r
1706                                 xSwitchRequired = pdTRUE;\r
1707                         }\r
1708                 }\r
1709                 #endif /* ( ( configUSE_PREEMPTION == 1 ) && ( configUSE_TIME_SLICING == 1 ) ) */\r
1710 \r
1711                 #if ( configUSE_TICK_HOOK == 1 )\r
1712                 {\r
1713                         /* Guard against the tick hook being called when the pended tick\r
1714                         count is being unwound (when the scheduler is being unlocked). */\r
1715                         if( uxPendedTicks == ( unsigned portBASE_TYPE ) 0U )\r
1716                         {\r
1717                                 vApplicationTickHook();\r
1718                         }\r
1719                 }\r
1720                 #endif /* configUSE_TICK_HOOK */\r
1721         }\r
1722         else\r
1723         {\r
1724                 ++uxPendedTicks;\r
1725 \r
1726                 /* The tick hook gets called at regular intervals, even if the\r
1727                 scheduler is locked. */\r
1728                 #if ( configUSE_TICK_HOOK == 1 )\r
1729                 {\r
1730                         vApplicationTickHook();\r
1731                 }\r
1732                 #endif\r
1733         }\r
1734 \r
1735         #if ( configUSE_PREEMPTION == 1 )\r
1736         {\r
1737                 if( xYieldPending != pdFALSE )\r
1738                 {\r
1739                         xSwitchRequired = pdTRUE;\r
1740                 }\r
1741         }\r
1742         #endif /* configUSE_PREEMPTION */\r
1743 \r
1744         return xSwitchRequired;\r
1745 }\r
1746 /*-----------------------------------------------------------*/\r
1747 \r
1748 #if ( configUSE_APPLICATION_TASK_TAG == 1 )\r
1749 \r
1750         void vTaskSetApplicationTaskTag( xTaskHandle xTask, pdTASK_HOOK_CODE pxHookFunction )\r
1751         {\r
1752         tskTCB *xTCB;\r
1753 \r
1754                 /* If xTask is NULL then we are setting our own task hook. */\r
1755                 if( xTask == NULL )\r
1756                 {\r
1757                         xTCB = ( tskTCB * ) pxCurrentTCB;\r
1758                 }\r
1759                 else\r
1760                 {\r
1761                         xTCB = ( tskTCB * ) xTask;\r
1762                 }\r
1763 \r
1764                 /* Save the hook function in the TCB.  A critical section is required as\r
1765                 the value can be accessed from an interrupt. */\r
1766                 taskENTER_CRITICAL();\r
1767                         xTCB->pxTaskTag = pxHookFunction;\r
1768                 taskEXIT_CRITICAL();\r
1769         }\r
1770 \r
1771 #endif /* configUSE_APPLICATION_TASK_TAG */\r
1772 /*-----------------------------------------------------------*/\r
1773 \r
1774 #if ( configUSE_APPLICATION_TASK_TAG == 1 )\r
1775 \r
1776         pdTASK_HOOK_CODE xTaskGetApplicationTaskTag( xTaskHandle xTask )\r
1777         {\r
1778         tskTCB *xTCB;\r
1779         pdTASK_HOOK_CODE xReturn;\r
1780 \r
1781                 /* If xTask is NULL then we are setting our own task hook. */\r
1782                 if( xTask == NULL )\r
1783                 {\r
1784                         xTCB = ( tskTCB * ) pxCurrentTCB;\r
1785                 }\r
1786                 else\r
1787                 {\r
1788                         xTCB = ( tskTCB * ) xTask;\r
1789                 }\r
1790 \r
1791                 /* Save the hook function in the TCB.  A critical section is required as\r
1792                 the value can be accessed from an interrupt. */\r
1793                 taskENTER_CRITICAL();\r
1794                         xReturn = xTCB->pxTaskTag;\r
1795                 taskEXIT_CRITICAL();\r
1796 \r
1797                 return xReturn;\r
1798         }\r
1799 \r
1800 #endif /* configUSE_APPLICATION_TASK_TAG */\r
1801 /*-----------------------------------------------------------*/\r
1802 \r
1803 #if ( configUSE_APPLICATION_TASK_TAG == 1 )\r
1804 \r
1805         portBASE_TYPE xTaskCallApplicationTaskHook( xTaskHandle xTask, void *pvParameter )\r
1806         {\r
1807         tskTCB *xTCB;\r
1808         portBASE_TYPE xReturn;\r
1809 \r
1810                 /* If xTask is NULL then we are calling our own task hook. */\r
1811                 if( xTask == NULL )\r
1812                 {\r
1813                         xTCB = ( tskTCB * ) pxCurrentTCB;\r
1814                 }\r
1815                 else\r
1816                 {\r
1817                         xTCB = ( tskTCB * ) xTask;\r
1818                 }\r
1819 \r
1820                 if( xTCB->pxTaskTag != NULL )\r
1821                 {\r
1822                         xReturn = xTCB->pxTaskTag( pvParameter );\r
1823                 }\r
1824                 else\r
1825                 {\r
1826                         xReturn = pdFAIL;\r
1827                 }\r
1828 \r
1829                 return xReturn;\r
1830         }\r
1831 \r
1832 #endif /* configUSE_APPLICATION_TASK_TAG */\r
1833 /*-----------------------------------------------------------*/\r
1834 \r
1835 void vTaskSwitchContext( void )\r
1836 {\r
1837         if( uxSchedulerSuspended != ( unsigned portBASE_TYPE ) pdFALSE )\r
1838         {\r
1839                 /* The scheduler is currently suspended - do not allow a context\r
1840                 switch. */\r
1841                 xYieldPending = pdTRUE;\r
1842         }\r
1843         else\r
1844         {\r
1845                 xYieldPending = pdFALSE;\r
1846                 traceTASK_SWITCHED_OUT();\r
1847 \r
1848                 #if ( configGENERATE_RUN_TIME_STATS == 1 )\r
1849                 {\r
1850                                 #ifdef portALT_GET_RUN_TIME_COUNTER_VALUE\r
1851                                         portALT_GET_RUN_TIME_COUNTER_VALUE( ulTotalRunTime );\r
1852                                 #else\r
1853                                         ulTotalRunTime = portGET_RUN_TIME_COUNTER_VALUE();\r
1854                                 #endif\r
1855 \r
1856                                 /* Add the amount of time the task has been running to the\r
1857                                 accumulated     time so far.  The time the task started running was\r
1858                                 stored in ulTaskSwitchedInTime.  Note that there is no overflow\r
1859                                 protection here so count values are only valid until the timer\r
1860                                 overflows.  The guard against negative values is to protect\r
1861                                 against suspect run time stat counter implementations - which\r
1862                                 are provided by the application, not the kernel. */\r
1863                                 if( ulTotalRunTime > ulTaskSwitchedInTime )\r
1864                                 {\r
1865                                         pxCurrentTCB->ulRunTimeCounter += ( ulTotalRunTime - ulTaskSwitchedInTime );\r
1866                                 }\r
1867                                 ulTaskSwitchedInTime = ulTotalRunTime;\r
1868                 }\r
1869                 #endif /* configGENERATE_RUN_TIME_STATS */\r
1870 \r
1871                 taskFIRST_CHECK_FOR_STACK_OVERFLOW();\r
1872                 taskSECOND_CHECK_FOR_STACK_OVERFLOW();\r
1873 \r
1874                 taskSELECT_HIGHEST_PRIORITY_TASK();\r
1875 \r
1876                 traceTASK_SWITCHED_IN();\r
1877 \r
1878                 #if ( configUSE_NEWLIB_REENTRANT == 1 )\r
1879                 {\r
1880                         /* Switch Newlib's _impure_ptr variable to point to the _reent\r
1881                         structure specific to this task. */\r
1882                         _impure_ptr = &( pxCurrentTCB->xNewLib_reent );\r
1883                 }\r
1884                 #endif /* configUSE_NEWLIB_REENTRANT */\r
1885         }\r
1886 }\r
1887 /*-----------------------------------------------------------*/\r
1888 \r
1889 void vTaskPlaceOnEventList( xList * const pxEventList, portTickType xTicksToWait )\r
1890 {\r
1891 portTickType xTimeToWake;\r
1892 \r
1893         configASSERT( pxEventList );\r
1894 \r
1895         /* THIS FUNCTION MUST BE CALLED WITH INTERRUPTS DISABLED OR THE\r
1896         SCHEDULER SUSPENDED. */\r
1897 \r
1898         /* Place the event list item of the TCB in the appropriate event list.\r
1899         This is placed in the list in priority order so the highest priority task\r
1900         is the first to be woken by the event. */\r
1901         vListInsert( pxEventList, &( pxCurrentTCB->xEventListItem ) );\r
1902 \r
1903         /* We must remove ourselves from the ready list before adding ourselves\r
1904         to the blocked list as the same list item is used for both lists.  We have\r
1905         exclusive access to the ready lists as the scheduler is locked. */\r
1906         if( uxListRemove( &( pxCurrentTCB->xGenericListItem ) ) == ( unsigned portBASE_TYPE ) 0 )\r
1907         {\r
1908                 /* The current task must be in a ready list, so there is no need to\r
1909                 check, and the port reset macro can be called directly. */\r
1910                 portRESET_READY_PRIORITY( pxCurrentTCB->uxPriority, uxTopReadyPriority );\r
1911         }\r
1912 \r
1913         #if ( INCLUDE_vTaskSuspend == 1 )\r
1914         {\r
1915                 if( xTicksToWait == portMAX_DELAY )\r
1916                 {\r
1917                         /* Add ourselves to the suspended task list instead of a delayed task\r
1918                         list to ensure we are not woken by a timing event.  We will block\r
1919                         indefinitely. */\r
1920                         vListInsertEnd( &xSuspendedTaskList, &( pxCurrentTCB->xGenericListItem ) );\r
1921                 }\r
1922                 else\r
1923                 {\r
1924                         /* Calculate the time at which the task should be woken if the event does\r
1925                         not occur.  This may overflow but this doesn't matter. */\r
1926                         xTimeToWake = xTickCount + xTicksToWait;\r
1927                         prvAddCurrentTaskToDelayedList( xTimeToWake );\r
1928                 }\r
1929         }\r
1930         #else /* INCLUDE_vTaskSuspend */\r
1931         {\r
1932                         /* Calculate the time at which the task should be woken if the event does\r
1933                         not occur.  This may overflow but this doesn't matter. */\r
1934                         xTimeToWake = xTickCount + xTicksToWait;\r
1935                         prvAddCurrentTaskToDelayedList( xTimeToWake );\r
1936         }\r
1937         #endif /* INCLUDE_vTaskSuspend */\r
1938 }\r
1939 /*-----------------------------------------------------------*/\r
1940 \r
1941 #if configUSE_TIMERS == 1\r
1942 \r
1943         void vTaskPlaceOnEventListRestricted( xList * const pxEventList, portTickType xTicksToWait )\r
1944         {\r
1945         portTickType xTimeToWake;\r
1946 \r
1947                 configASSERT( pxEventList );\r
1948 \r
1949                 /* This function should not be called by application code hence the\r
1950                 'Restricted' in its name.  It is not part of the public API.  It is\r
1951                 designed for use by kernel code, and has special calling requirements -\r
1952                 it should be called from a critical section. */\r
1953 \r
1954 \r
1955                 /* Place the event list item of the TCB in the appropriate event list.\r
1956                 In this case it is assume that this is the only task that is going to\r
1957                 be waiting on this event list, so the faster vListInsertEnd() function\r
1958                 can be used in place of vListInsert. */\r
1959                 vListInsertEnd( pxEventList, &( pxCurrentTCB->xEventListItem ) );\r
1960 \r
1961                 /* We must remove this task from the ready list before adding it to the\r
1962                 blocked list as the same list item is used for both lists.  This\r
1963                 function is called form a critical section. */\r
1964                 if( uxListRemove( &( pxCurrentTCB->xGenericListItem ) ) == ( unsigned portBASE_TYPE ) 0 )\r
1965                 {\r
1966                         /* The current task must be in a ready list, so there is no need to\r
1967                         check, and the port reset macro can be called directly. */\r
1968                         portRESET_READY_PRIORITY( pxCurrentTCB->uxPriority, uxTopReadyPriority );\r
1969                 }\r
1970 \r
1971                 /* Calculate the time at which the task should be woken if the event does\r
1972                 not occur.  This may overflow but this doesn't matter. */\r
1973                 xTimeToWake = xTickCount + xTicksToWait;\r
1974 \r
1975                 traceTASK_DELAY_UNTIL();\r
1976                 prvAddCurrentTaskToDelayedList( xTimeToWake );\r
1977         }\r
1978 \r
1979 #endif /* configUSE_TIMERS */\r
1980 /*-----------------------------------------------------------*/\r
1981 \r
1982 signed portBASE_TYPE xTaskRemoveFromEventList( const xList * const pxEventList )\r
1983 {\r
1984 tskTCB *pxUnblockedTCB;\r
1985 portBASE_TYPE xReturn;\r
1986 \r
1987         /* THIS FUNCTION MUST BE CALLED WITH INTERRUPTS DISABLED OR THE\r
1988         SCHEDULER SUSPENDED.  It can also be called from within an ISR. */\r
1989 \r
1990         /* The event list is sorted in priority order, so we can remove the\r
1991         first in the list, remove the TCB from the delayed list, and add\r
1992         it to the ready list.\r
1993 \r
1994         If an event is for a queue that is locked then this function will never\r
1995         get called - the lock count on the queue will get modified instead.  This\r
1996         means we can always expect exclusive access to the event list here.\r
1997 \r
1998         This function assumes that a check has already been made to ensure that\r
1999         pxEventList is not empty. */\r
2000         pxUnblockedTCB = ( tskTCB * ) listGET_OWNER_OF_HEAD_ENTRY( pxEventList );\r
2001         configASSERT( pxUnblockedTCB );\r
2002         ( void ) uxListRemove( &( pxUnblockedTCB->xEventListItem ) );\r
2003 \r
2004         if( uxSchedulerSuspended == ( unsigned portBASE_TYPE ) pdFALSE )\r
2005         {\r
2006                 ( void ) uxListRemove( &( pxUnblockedTCB->xGenericListItem ) );\r
2007                 prvAddTaskToReadyList( pxUnblockedTCB );\r
2008         }\r
2009         else\r
2010         {\r
2011                 /* We cannot access the delayed or ready lists, so will hold this\r
2012                 task pending until the scheduler is resumed. */\r
2013                 vListInsertEnd( &( xPendingReadyList ), &( pxUnblockedTCB->xEventListItem ) );\r
2014         }\r
2015 \r
2016         if( pxUnblockedTCB->uxPriority >= pxCurrentTCB->uxPriority )\r
2017         {\r
2018                 /* Return true if the task removed from the event list has\r
2019                 a higher priority than the calling task.  This allows\r
2020                 the calling task to know if it should force a context\r
2021                 switch now. */\r
2022                 xReturn = pdTRUE;\r
2023 \r
2024                 /* Mark that a yield is pending in case the user is not using the\r
2025                 "xHigherPriorityTaskWoken" parameter to an ISR safe FreeRTOS function. */\r
2026                 xYieldPending = pdTRUE;\r
2027         }\r
2028         else\r
2029         {\r
2030                 xReturn = pdFALSE;\r
2031         }\r
2032 \r
2033         return xReturn;\r
2034 }\r
2035 /*-----------------------------------------------------------*/\r
2036 \r
2037 void vTaskSetTimeOutState( xTimeOutType * const pxTimeOut )\r
2038 {\r
2039         configASSERT( pxTimeOut );\r
2040         pxTimeOut->xOverflowCount = xNumOfOverflows;\r
2041         pxTimeOut->xTimeOnEntering = xTickCount;\r
2042 }\r
2043 /*-----------------------------------------------------------*/\r
2044 \r
2045 portBASE_TYPE xTaskCheckForTimeOut( xTimeOutType * const pxTimeOut, portTickType * const pxTicksToWait )\r
2046 {\r
2047 portBASE_TYPE xReturn;\r
2048 \r
2049         configASSERT( pxTimeOut );\r
2050         configASSERT( pxTicksToWait );\r
2051 \r
2052         taskENTER_CRITICAL();\r
2053         {\r
2054                 /* Minor optimisation.  The tick count cannot change in this block. */\r
2055                 const portTickType xConstTickCount = xTickCount;\r
2056 \r
2057                 #if ( INCLUDE_vTaskSuspend == 1 )\r
2058                         /* If INCLUDE_vTaskSuspend is set to 1 and the block time specified is\r
2059                         the maximum block time then the task should block indefinitely, and\r
2060                         therefore never time out. */\r
2061                         if( *pxTicksToWait == portMAX_DELAY )\r
2062                         {\r
2063                                 xReturn = pdFALSE;\r
2064                         }\r
2065                         else /* We are not blocking indefinitely, perform the checks below. */\r
2066                 #endif\r
2067 \r
2068                 if( ( xNumOfOverflows != pxTimeOut->xOverflowCount ) && ( xConstTickCount >= pxTimeOut->xTimeOnEntering ) ) /*lint !e525 Indentation preferred as is to make code within pre-processor directives clearer. */\r
2069                 {\r
2070                         /* The tick count is greater than the time at which vTaskSetTimeout()\r
2071                         was called, but has also overflowed since vTaskSetTimeOut() was called.\r
2072                         It must have wrapped all the way around and gone past us again. This\r
2073                         passed since vTaskSetTimeout() was called. */\r
2074                         xReturn = pdTRUE;\r
2075                 }\r
2076                 else if( ( xConstTickCount - pxTimeOut->xTimeOnEntering ) < *pxTicksToWait )\r
2077                 {\r
2078                         /* Not a genuine timeout. Adjust parameters for time remaining. */\r
2079                         *pxTicksToWait -= ( xConstTickCount -  pxTimeOut->xTimeOnEntering );\r
2080                         vTaskSetTimeOutState( pxTimeOut );\r
2081                         xReturn = pdFALSE;\r
2082                 }\r
2083                 else\r
2084                 {\r
2085                         xReturn = pdTRUE;\r
2086                 }\r
2087         }\r
2088         taskEXIT_CRITICAL();\r
2089 \r
2090         return xReturn;\r
2091 }\r
2092 /*-----------------------------------------------------------*/\r
2093 \r
2094 void vTaskMissedYield( void )\r
2095 {\r
2096         xYieldPending = pdTRUE;\r
2097 }\r
2098 /*-----------------------------------------------------------*/\r
2099 \r
2100 #if ( configUSE_TRACE_FACILITY == 1 )\r
2101 \r
2102         unsigned portBASE_TYPE uxTaskGetTaskNumber( xTaskHandle xTask )\r
2103         {\r
2104         unsigned portBASE_TYPE uxReturn;\r
2105         tskTCB *pxTCB;\r
2106 \r
2107                 if( xTask != NULL )\r
2108                 {\r
2109                         pxTCB = ( tskTCB * ) xTask;\r
2110                         uxReturn = pxTCB->uxTaskNumber;\r
2111                 }\r
2112                 else\r
2113                 {\r
2114                         uxReturn = 0U;\r
2115                 }\r
2116 \r
2117                 return uxReturn;\r
2118         }\r
2119 \r
2120 #endif /* configUSE_TRACE_FACILITY */\r
2121 /*-----------------------------------------------------------*/\r
2122 \r
2123 #if ( configUSE_TRACE_FACILITY == 1 )\r
2124 \r
2125         void vTaskSetTaskNumber( xTaskHandle xTask, unsigned portBASE_TYPE uxHandle )\r
2126         {\r
2127         tskTCB *pxTCB;\r
2128 \r
2129                 if( xTask != NULL )\r
2130                 {\r
2131                         pxTCB = ( tskTCB * ) xTask;\r
2132                         pxTCB->uxTaskNumber = uxHandle;\r
2133                 }\r
2134         }\r
2135 \r
2136 #endif /* configUSE_TRACE_FACILITY */\r
2137 \r
2138 /*\r
2139  * -----------------------------------------------------------\r
2140  * The Idle task.\r
2141  * ----------------------------------------------------------\r
2142  *\r
2143  * The portTASK_FUNCTION() macro is used to allow port/compiler specific\r
2144  * language extensions.  The equivalent prototype for this function is:\r
2145  *\r
2146  * void prvIdleTask( void *pvParameters );\r
2147  *\r
2148  */\r
2149 static portTASK_FUNCTION( prvIdleTask, pvParameters )\r
2150 {\r
2151         /* Stop warnings. */\r
2152         ( void ) pvParameters;\r
2153 \r
2154         for( ;; )\r
2155         {\r
2156                 /* See if any tasks have been deleted. */\r
2157                 prvCheckTasksWaitingTermination();\r
2158 \r
2159                 #if ( configUSE_PREEMPTION == 0 )\r
2160                 {\r
2161                         /* If we are not using preemption we keep forcing a task switch to\r
2162                         see if any other task has become available.  If we are using\r
2163                         preemption we don't need to do this as any task becoming available\r
2164                         will automatically get the processor anyway. */\r
2165                         taskYIELD();\r
2166                 }\r
2167                 #endif /* configUSE_PREEMPTION */\r
2168 \r
2169                 #if ( ( configUSE_PREEMPTION == 1 ) && ( configIDLE_SHOULD_YIELD == 1 ) )\r
2170                 {\r
2171                         /* When using preemption tasks of equal priority will be\r
2172                         timesliced.  If a task that is sharing the idle priority is ready\r
2173                         to run then the idle task should yield before the end of the\r
2174                         timeslice.\r
2175 \r
2176                         A critical region is not required here as we are just reading from\r
2177                         the list, and an occasional incorrect value will not matter.  If\r
2178                         the ready list at the idle priority contains more than one task\r
2179                         then a task other than the idle task is ready to execute. */\r
2180                         if( listCURRENT_LIST_LENGTH( &( pxReadyTasksLists[ tskIDLE_PRIORITY ] ) ) > ( unsigned portBASE_TYPE ) 1 )\r
2181                         {\r
2182                                 taskYIELD();\r
2183                         }\r
2184                 }\r
2185                 #endif /* ( ( configUSE_PREEMPTION == 1 ) && ( configIDLE_SHOULD_YIELD == 1 ) ) */\r
2186 \r
2187                 #if ( configUSE_IDLE_HOOK == 1 )\r
2188                 {\r
2189                         extern void vApplicationIdleHook( void );\r
2190 \r
2191                         /* Call the user defined function from within the idle task.  This\r
2192                         allows the application designer to add background functionality\r
2193                         without the overhead of a separate task.\r
2194                         NOTE: vApplicationIdleHook() MUST NOT, UNDER ANY CIRCUMSTANCES,\r
2195                         CALL A FUNCTION THAT MIGHT BLOCK. */\r
2196                         vApplicationIdleHook();\r
2197                 }\r
2198                 #endif /* configUSE_IDLE_HOOK */\r
2199 \r
2200                 /* This conditional compilation should use inequality to 0, not equality\r
2201                 to 1.  This is to ensure portSUPPRESS_TICKS_AND_SLEEP() is called when\r
2202                 user defined low power mode     implementations require\r
2203                 configUSE_TICKLESS_IDLE to be set to a value other than 1. */\r
2204                 #if ( configUSE_TICKLESS_IDLE != 0 )\r
2205                 {\r
2206                 portTickType xExpectedIdleTime;\r
2207 \r
2208                         /* It is not desirable to suspend then resume the scheduler on\r
2209                         each iteration of the idle task.  Therefore, a preliminary\r
2210                         test of the expected idle time is performed without the\r
2211                         scheduler suspended.  The result here is not necessarily\r
2212                         valid. */\r
2213                         xExpectedIdleTime = prvGetExpectedIdleTime();\r
2214 \r
2215                         if( xExpectedIdleTime >= configEXPECTED_IDLE_TIME_BEFORE_SLEEP )\r
2216                         {\r
2217                                 vTaskSuspendAll();\r
2218                                 {\r
2219                                         /* Now the scheduler is suspended, the expected idle\r
2220                                         time can be sampled again, and this time its value can\r
2221                                         be used. */\r
2222                                         configASSERT( xNextTaskUnblockTime >= xTickCount );\r
2223                                         xExpectedIdleTime = prvGetExpectedIdleTime();\r
2224 \r
2225                                         if( xExpectedIdleTime >= configEXPECTED_IDLE_TIME_BEFORE_SLEEP )\r
2226                                         {\r
2227                                                 traceLOW_POWER_IDLE_BEGIN();\r
2228                                                 portSUPPRESS_TICKS_AND_SLEEP( xExpectedIdleTime );\r
2229                                                 traceLOW_POWER_IDLE_END();\r
2230                                         }\r
2231                                 }\r
2232                                 ( void ) xTaskResumeAll();\r
2233                         }\r
2234                 }\r
2235                 #endif /* configUSE_TICKLESS_IDLE */\r
2236         }\r
2237 }\r
2238 /*-----------------------------------------------------------*/\r
2239 \r
2240 #if configUSE_TICKLESS_IDLE != 0\r
2241 \r
2242         eSleepModeStatus eTaskConfirmSleepModeStatus( void )\r
2243         {\r
2244         eSleepModeStatus eReturn = eStandardSleep;\r
2245 \r
2246                 if( listCURRENT_LIST_LENGTH( &xPendingReadyList ) != 0 )\r
2247                 {\r
2248                         /* A task was made ready while the scheduler was suspended. */\r
2249                         eReturn = eAbortSleep;\r
2250                 }\r
2251                 else if( xYieldPending != pdFALSE )\r
2252                 {\r
2253                         /* A yield was pended while the scheduler was suspended. */\r
2254                         eReturn = eAbortSleep;\r
2255                 }\r
2256                 else\r
2257                 {\r
2258                         #if configUSE_TIMERS == 0\r
2259                         {\r
2260                                 /* The idle task exists in addition to the application tasks. */\r
2261                                 const unsigned portBASE_TYPE uxNonApplicationTasks = 1;\r
2262 \r
2263                                 /* If timers are not being used and all the tasks are in the\r
2264                                 suspended list (which might mean they have an infinite block\r
2265                                 time rather than actually being suspended) then it is safe to\r
2266                                 turn all clocks off and just wait for external interrupts. */\r
2267                                 if( listCURRENT_LIST_LENGTH( &xSuspendedTaskList ) == ( uxCurrentNumberOfTasks - uxNonApplicationTasks ) )\r
2268                                 {\r
2269                                         eReturn = eNoTasksWaitingTimeout;\r
2270                                 }\r
2271                         }\r
2272                         #endif /* configUSE_TIMERS */\r
2273                 }\r
2274 \r
2275                 return eReturn;\r
2276         }\r
2277 #endif /* configUSE_TICKLESS_IDLE */\r
2278 /*-----------------------------------------------------------*/\r
2279 \r
2280 static void prvInitialiseTCBVariables( tskTCB *pxTCB, const signed char * const pcName, unsigned portBASE_TYPE uxPriority, const xMemoryRegion * const xRegions, unsigned short usStackDepth )\r
2281 {\r
2282 unsigned portBASE_TYPE x;\r
2283 \r
2284         /* Store the task name in the TCB. */\r
2285         for( x = ( unsigned portBASE_TYPE ) 0; x < ( unsigned portBASE_TYPE ) configMAX_TASK_NAME_LEN; x++ )\r
2286         {\r
2287                 pxTCB->pcTaskName[ x ] = pcName[ x ];\r
2288 \r
2289                 /* Don't copy all configMAX_TASK_NAME_LEN if the string is shorter than\r
2290                 configMAX_TASK_NAME_LEN characters just in case the memory after the\r
2291                 string is not accessible (extremely unlikely). */\r
2292                 if( pcName[ x ] == 0x00 )\r
2293                 {\r
2294                         break;\r
2295                 }\r
2296         }\r
2297 \r
2298         /* Ensure the name string is terminated in the case that the string length\r
2299         was greater or equal to configMAX_TASK_NAME_LEN. */\r
2300         pxTCB->pcTaskName[ configMAX_TASK_NAME_LEN - 1 ] = ( signed char ) '\0';\r
2301 \r
2302         /* This is used as an array index so must ensure it's not too large.  First\r
2303         remove the privilege bit if one is present. */\r
2304         if( uxPriority >= ( unsigned portBASE_TYPE ) configMAX_PRIORITIES )\r
2305         {\r
2306                 uxPriority = ( unsigned portBASE_TYPE ) configMAX_PRIORITIES - ( unsigned portBASE_TYPE ) 1U;\r
2307         }\r
2308 \r
2309         pxTCB->uxPriority = uxPriority;\r
2310         #if ( configUSE_MUTEXES == 1 )\r
2311         {\r
2312                 pxTCB->uxBasePriority = uxPriority;\r
2313         }\r
2314         #endif /* configUSE_MUTEXES */\r
2315 \r
2316         vListInitialiseItem( &( pxTCB->xGenericListItem ) );\r
2317         vListInitialiseItem( &( pxTCB->xEventListItem ) );\r
2318 \r
2319         /* Set the pxTCB as a link back from the xListItem.  This is so we can get\r
2320         back to the containing TCB from a generic item in a list. */\r
2321         listSET_LIST_ITEM_OWNER( &( pxTCB->xGenericListItem ), pxTCB );\r
2322 \r
2323         /* Event lists are always in priority order. */\r
2324         listSET_LIST_ITEM_VALUE( &( pxTCB->xEventListItem ), ( portTickType ) configMAX_PRIORITIES - ( portTickType ) uxPriority ); /*lint !e961 MISRA exception as the casts are only redundant for some ports. */\r
2325         listSET_LIST_ITEM_OWNER( &( pxTCB->xEventListItem ), pxTCB );\r
2326 \r
2327         #if ( portCRITICAL_NESTING_IN_TCB == 1 )\r
2328         {\r
2329                 pxTCB->uxCriticalNesting = ( unsigned portBASE_TYPE ) 0U;\r
2330         }\r
2331         #endif /* portCRITICAL_NESTING_IN_TCB */\r
2332 \r
2333         #if ( configUSE_APPLICATION_TASK_TAG == 1 )\r
2334         {\r
2335                 pxTCB->pxTaskTag = NULL;\r
2336         }\r
2337         #endif /* configUSE_APPLICATION_TASK_TAG */\r
2338 \r
2339         #if ( configGENERATE_RUN_TIME_STATS == 1 )\r
2340         {\r
2341                 pxTCB->ulRunTimeCounter = 0UL;\r
2342         }\r
2343         #endif /* configGENERATE_RUN_TIME_STATS */\r
2344 \r
2345         #if ( portUSING_MPU_WRAPPERS == 1 )\r
2346         {\r
2347                 vPortStoreTaskMPUSettings( &( pxTCB->xMPUSettings ), xRegions, pxTCB->pxStack, usStackDepth );\r
2348         }\r
2349         #else /* portUSING_MPU_WRAPPERS */\r
2350         {\r
2351                 ( void ) xRegions;\r
2352                 ( void ) usStackDepth;\r
2353         }\r
2354         #endif /* portUSING_MPU_WRAPPERS */\r
2355 \r
2356         #if ( configUSE_NEWLIB_REENTRANT == 1 )\r
2357         {\r
2358                 /* Initialise this task's Newlib reent structure. */\r
2359                 _REENT_INIT_PTR( ( &( pxTCB->xNewLib_reent ) ) );\r
2360         }\r
2361         #endif /* configUSE_NEWLIB_REENTRANT */\r
2362 }\r
2363 /*-----------------------------------------------------------*/\r
2364 \r
2365 #if ( portUSING_MPU_WRAPPERS == 1 )\r
2366 \r
2367         void vTaskAllocateMPURegions( xTaskHandle xTaskToModify, const xMemoryRegion * const xRegions )\r
2368         {\r
2369         tskTCB *pxTCB;\r
2370 \r
2371                 /* If null is passed in here then we are deleting ourselves. */\r
2372                 pxTCB = prvGetTCBFromHandle( xTaskToModify );\r
2373 \r
2374         vPortStoreTaskMPUSettings( &( pxTCB->xMPUSettings ), xRegions, NULL, 0 );\r
2375         }\r
2376 \r
2377 #endif /* portUSING_MPU_WRAPPERS */\r
2378 /*-----------------------------------------------------------*/\r
2379 \r
2380 static void prvInitialiseTaskLists( void )\r
2381 {\r
2382 unsigned portBASE_TYPE uxPriority;\r
2383 \r
2384         for( uxPriority = ( unsigned portBASE_TYPE ) 0U; uxPriority < ( unsigned portBASE_TYPE ) configMAX_PRIORITIES; uxPriority++ )\r
2385         {\r
2386                 vListInitialise( &( pxReadyTasksLists[ uxPriority ] ) );\r
2387         }\r
2388 \r
2389         vListInitialise( &xDelayedTaskList1 );\r
2390         vListInitialise( &xDelayedTaskList2 );\r
2391         vListInitialise( &xPendingReadyList );\r
2392 \r
2393         #if ( INCLUDE_vTaskDelete == 1 )\r
2394         {\r
2395                 vListInitialise( &xTasksWaitingTermination );\r
2396         }\r
2397         #endif /* INCLUDE_vTaskDelete */\r
2398 \r
2399         #if ( INCLUDE_vTaskSuspend == 1 )\r
2400         {\r
2401                 vListInitialise( &xSuspendedTaskList );\r
2402         }\r
2403         #endif /* INCLUDE_vTaskSuspend */\r
2404 \r
2405         /* Start with pxDelayedTaskList using list1 and the pxOverflowDelayedTaskList\r
2406         using list2. */\r
2407         pxDelayedTaskList = &xDelayedTaskList1;\r
2408         pxOverflowDelayedTaskList = &xDelayedTaskList2;\r
2409 }\r
2410 /*-----------------------------------------------------------*/\r
2411 \r
2412 static void prvCheckTasksWaitingTermination( void )\r
2413 {\r
2414         #if ( INCLUDE_vTaskDelete == 1 )\r
2415         {\r
2416                 portBASE_TYPE xListIsEmpty;\r
2417 \r
2418                 /* ucTasksDeleted is used to prevent vTaskSuspendAll() being called\r
2419                 too often in the idle task. */\r
2420                 while( uxTasksDeleted > ( unsigned portBASE_TYPE ) 0U )\r
2421                 {\r
2422                         vTaskSuspendAll();\r
2423                                 xListIsEmpty = listLIST_IS_EMPTY( &xTasksWaitingTermination );\r
2424                         ( void ) xTaskResumeAll();\r
2425 \r
2426                         if( xListIsEmpty == pdFALSE )\r
2427                         {\r
2428                                 tskTCB *pxTCB;\r
2429 \r
2430                                 taskENTER_CRITICAL();\r
2431                                 {\r
2432                                         pxTCB = ( tskTCB * ) listGET_OWNER_OF_HEAD_ENTRY( ( &xTasksWaitingTermination ) );\r
2433                                         ( void ) uxListRemove( &( pxTCB->xGenericListItem ) );\r
2434                                         --uxCurrentNumberOfTasks;\r
2435                                         --uxTasksDeleted;\r
2436                                 }\r
2437                                 taskEXIT_CRITICAL();\r
2438 \r
2439                                 prvDeleteTCB( pxTCB );\r
2440                         }\r
2441                 }\r
2442         }\r
2443         #endif /* vTaskDelete */\r
2444 }\r
2445 /*-----------------------------------------------------------*/\r
2446 \r
2447 static void prvAddCurrentTaskToDelayedList( portTickType xTimeToWake )\r
2448 {\r
2449         /* The list item will be inserted in wake time order. */\r
2450         listSET_LIST_ITEM_VALUE( &( pxCurrentTCB->xGenericListItem ), xTimeToWake );\r
2451 \r
2452         if( xTimeToWake < xTickCount )\r
2453         {\r
2454                 /* Wake time has overflowed.  Place this item in the overflow list. */\r
2455                 vListInsert( pxOverflowDelayedTaskList, &( pxCurrentTCB->xGenericListItem ) );\r
2456         }\r
2457         else\r
2458         {\r
2459                 /* The wake time has not overflowed, so we can use the current block list. */\r
2460                 vListInsert( pxDelayedTaskList, &( pxCurrentTCB->xGenericListItem ) );\r
2461 \r
2462                 /* If the task entering the blocked state was placed at the head of the\r
2463                 list of blocked tasks then xNextTaskUnblockTime needs to be updated\r
2464                 too. */\r
2465                 if( xTimeToWake < xNextTaskUnblockTime )\r
2466                 {\r
2467                         xNextTaskUnblockTime = xTimeToWake;\r
2468                 }\r
2469         }\r
2470 }\r
2471 /*-----------------------------------------------------------*/\r
2472 \r
2473 static tskTCB *prvAllocateTCBAndStack( unsigned short usStackDepth, portSTACK_TYPE *puxStackBuffer )\r
2474 {\r
2475 tskTCB *pxNewTCB;\r
2476 \r
2477         /* Allocate space for the TCB.  Where the memory comes from depends on\r
2478         the implementation of the port malloc function. */\r
2479         pxNewTCB = ( tskTCB * ) pvPortMalloc( sizeof( tskTCB ) );\r
2480 \r
2481         if( pxNewTCB != NULL )\r
2482         {\r
2483                 /* Allocate space for the stack used by the task being created.\r
2484                 The base of the stack memory stored in the TCB so the task can\r
2485                 be deleted later if required. */\r
2486                 pxNewTCB->pxStack = ( portSTACK_TYPE * ) pvPortMallocAligned( ( ( ( size_t ) usStackDepth ) * sizeof( portSTACK_TYPE ) ), puxStackBuffer ); /*lint !e961 MISRA exception as the casts are only redundant for some ports. */\r
2487 \r
2488                 if( pxNewTCB->pxStack == NULL )\r
2489                 {\r
2490                         /* Could not allocate the stack.  Delete the allocated TCB. */\r
2491                         vPortFree( pxNewTCB );\r
2492                         pxNewTCB = NULL;\r
2493                 }\r
2494                 else\r
2495                 {\r
2496                         /* Just to help debugging. */\r
2497                         ( void ) memset( pxNewTCB->pxStack, ( int ) tskSTACK_FILL_BYTE, ( size_t ) usStackDepth * sizeof( portSTACK_TYPE ) );\r
2498                 }\r
2499         }\r
2500 \r
2501         return pxNewTCB;\r
2502 }\r
2503 /*-----------------------------------------------------------*/\r
2504 \r
2505 #if ( configUSE_TRACE_FACILITY == 1 )\r
2506 \r
2507         static unsigned portBASE_TYPE prvListTaskWithinSingleList( xTaskStatusType *pxTaskStatusArray, xList *pxList, eTaskState eState )\r
2508         {\r
2509         volatile tskTCB *pxNextTCB, *pxFirstTCB;\r
2510         unsigned portBASE_TYPE uxTask = 0;\r
2511 \r
2512                 if( listCURRENT_LIST_LENGTH( pxList ) > ( unsigned portBASE_TYPE ) 0 )\r
2513                 {\r
2514                         listGET_OWNER_OF_NEXT_ENTRY( pxFirstTCB, pxList );\r
2515 \r
2516                         /* Populate an xTaskStatusType structure within the\r
2517                         pxTaskStatusArray array for each task that is referenced from\r
2518                         pxList.  See the definition of xTaskStatusType in task.h for the\r
2519                         meaning of each xTaskStatusType structure member. */\r
2520                         do\r
2521                         {\r
2522                                 listGET_OWNER_OF_NEXT_ENTRY( pxNextTCB, pxList );\r
2523 \r
2524                                 pxTaskStatusArray[ uxTask ].xHandle = ( xTaskHandle ) pxNextTCB;\r
2525                                 pxTaskStatusArray[ uxTask ].pcTaskName = ( const signed char * ) &( pxNextTCB->pcTaskName [ 0 ] );\r
2526                                 pxTaskStatusArray[ uxTask ].xTaskNumber = pxNextTCB->uxTCBNumber;\r
2527                                 pxTaskStatusArray[ uxTask ].eCurrentState = eState;\r
2528                                 pxTaskStatusArray[ uxTask ].uxCurrentPriority = pxNextTCB->uxPriority;\r
2529 \r
2530                                 #if ( configUSE_MUTEXES == 1 )\r
2531                                 {\r
2532                                         pxTaskStatusArray[ uxTask ].uxBasePriority = pxNextTCB->uxBasePriority;\r
2533                                 }\r
2534                                 #else\r
2535                                 {\r
2536                                         pxTaskStatusArray[ uxTask ].uxBasePriority = 0;\r
2537                                 }\r
2538                                 #endif\r
2539 \r
2540                                 #if ( configGENERATE_RUN_TIME_STATS == 1 )\r
2541                                 {\r
2542                                         pxTaskStatusArray[ uxTask ].ulRunTimeCounter = pxNextTCB->ulRunTimeCounter;\r
2543                                 }\r
2544                                 #else\r
2545                                 {\r
2546                                         pxTaskStatusArray[ uxTask ].ulRunTimeCounter = 0;\r
2547                                 }\r
2548                                 #endif\r
2549 \r
2550                                 #if ( portSTACK_GROWTH > 0 )\r
2551                                 {\r
2552                                         ppxTaskStatusArray[ uxTask ].usStackHighWaterMark = prvTaskCheckFreeStackSpace( ( unsigned char * ) pxNextTCB->pxEndOfStack );\r
2553                                 }\r
2554                                 #else\r
2555                                 {\r
2556                                         pxTaskStatusArray[ uxTask ].usStackHighWaterMark = prvTaskCheckFreeStackSpace( ( unsigned char * ) pxNextTCB->pxStack );\r
2557                                 }\r
2558                                 #endif\r
2559 \r
2560                                 uxTask++;\r
2561 \r
2562                         } while( pxNextTCB != pxFirstTCB );\r
2563                 }\r
2564 \r
2565                 return uxTask;\r
2566         }\r
2567 \r
2568 #endif /* configUSE_TRACE_FACILITY */\r
2569 /*-----------------------------------------------------------*/\r
2570 \r
2571 #if ( ( configUSE_TRACE_FACILITY == 1 ) || ( INCLUDE_uxTaskGetStackHighWaterMark == 1 ) )\r
2572 \r
2573         static unsigned short prvTaskCheckFreeStackSpace( const unsigned char * pucStackByte )\r
2574         {\r
2575         unsigned short usCount = 0U;\r
2576 \r
2577                 while( *pucStackByte == tskSTACK_FILL_BYTE )\r
2578                 {\r
2579                         pucStackByte -= portSTACK_GROWTH;\r
2580                         usCount++;\r
2581                 }\r
2582 \r
2583                 usCount /= sizeof( portSTACK_TYPE );\r
2584 \r
2585                 return usCount;\r
2586         }\r
2587 \r
2588 #endif /* ( ( configUSE_TRACE_FACILITY == 1 ) || ( INCLUDE_uxTaskGetStackHighWaterMark == 1 ) ) */\r
2589 /*-----------------------------------------------------------*/\r
2590 \r
2591 #if ( INCLUDE_uxTaskGetStackHighWaterMark == 1 )\r
2592 \r
2593         unsigned portBASE_TYPE uxTaskGetStackHighWaterMark( xTaskHandle xTask )\r
2594         {\r
2595         tskTCB *pxTCB;\r
2596         unsigned char *pcEndOfStack;\r
2597         unsigned portBASE_TYPE uxReturn;\r
2598 \r
2599                 pxTCB = prvGetTCBFromHandle( xTask );\r
2600 \r
2601                 #if portSTACK_GROWTH < 0\r
2602                 {\r
2603                         pcEndOfStack = ( unsigned char * ) pxTCB->pxStack;\r
2604                 }\r
2605                 #else\r
2606                 {\r
2607                         pcEndOfStack = ( unsigned char * ) pxTCB->pxEndOfStack;\r
2608                 }\r
2609                 #endif\r
2610 \r
2611                 uxReturn = ( unsigned portBASE_TYPE ) prvTaskCheckFreeStackSpace( pcEndOfStack );\r
2612 \r
2613                 return uxReturn;\r
2614         }\r
2615 \r
2616 #endif /* INCLUDE_uxTaskGetStackHighWaterMark */\r
2617 /*-----------------------------------------------------------*/\r
2618 \r
2619 #if ( INCLUDE_vTaskDelete == 1 )\r
2620 \r
2621         static void prvDeleteTCB( tskTCB *pxTCB )\r
2622         {\r
2623                 /* This call is required specifically for the TriCore port.  It must be\r
2624                 above the vPortFree() calls.  The call is also used by ports/demos that\r
2625                 want to allocate and clean RAM statically. */\r
2626                 portCLEAN_UP_TCB( pxTCB );\r
2627 \r
2628                 /* Free up the memory allocated by the scheduler for the task.  It is up to\r
2629                 the task to free any memory allocated at the application level. */\r
2630                 vPortFreeAligned( pxTCB->pxStack );\r
2631                 vPortFree( pxTCB );\r
2632         }\r
2633 \r
2634 #endif /* INCLUDE_vTaskDelete */\r
2635 /*-----------------------------------------------------------*/\r
2636 \r
2637 #if ( ( INCLUDE_xTaskGetCurrentTaskHandle == 1 ) || ( configUSE_MUTEXES == 1 ) )\r
2638 \r
2639         xTaskHandle xTaskGetCurrentTaskHandle( void )\r
2640         {\r
2641         xTaskHandle xReturn;\r
2642 \r
2643                 /* A critical section is not required as this is not called from\r
2644                 an interrupt and the current TCB will always be the same for any\r
2645                 individual execution thread. */\r
2646                 xReturn = pxCurrentTCB;\r
2647 \r
2648                 return xReturn;\r
2649         }\r
2650 \r
2651 #endif /* ( ( INCLUDE_xTaskGetCurrentTaskHandle == 1 ) || ( configUSE_MUTEXES == 1 ) ) */\r
2652 /*-----------------------------------------------------------*/\r
2653 \r
2654 #if ( ( INCLUDE_xTaskGetSchedulerState == 1 ) || ( configUSE_TIMERS == 1 ) )\r
2655 \r
2656         portBASE_TYPE xTaskGetSchedulerState( void )\r
2657         {\r
2658         portBASE_TYPE xReturn;\r
2659 \r
2660                 if( xSchedulerRunning == pdFALSE )\r
2661                 {\r
2662                         xReturn = taskSCHEDULER_NOT_STARTED;\r
2663                 }\r
2664                 else\r
2665                 {\r
2666                         if( uxSchedulerSuspended == ( unsigned portBASE_TYPE ) pdFALSE )\r
2667                         {\r
2668                                 xReturn = taskSCHEDULER_RUNNING;\r
2669                         }\r
2670                         else\r
2671                         {\r
2672                                 xReturn = taskSCHEDULER_SUSPENDED;\r
2673                         }\r
2674                 }\r
2675 \r
2676                 return xReturn;\r
2677         }\r
2678 \r
2679 #endif /* ( ( INCLUDE_xTaskGetSchedulerState == 1 ) || ( configUSE_TIMERS == 1 ) ) */\r
2680 /*-----------------------------------------------------------*/\r
2681 \r
2682 #if ( configUSE_MUTEXES == 1 )\r
2683 \r
2684         void vTaskPriorityInherit( xTaskHandle const pxMutexHolder )\r
2685         {\r
2686         tskTCB * const pxTCB = ( tskTCB * ) pxMutexHolder;\r
2687 \r
2688                 /* If the mutex was given back by an interrupt while the queue was\r
2689                 locked then the mutex holder might now be NULL. */\r
2690                 if( pxMutexHolder != NULL )\r
2691                 {\r
2692                         if( pxTCB->uxPriority < pxCurrentTCB->uxPriority )\r
2693                         {\r
2694                                 /* Adjust the mutex holder state to account for its new priority. */\r
2695                                 listSET_LIST_ITEM_VALUE( &( pxTCB->xEventListItem ), ( portTickType ) configMAX_PRIORITIES - ( portTickType ) pxCurrentTCB->uxPriority ); /*lint !e961 MISRA exception as the casts are only redundant for some ports. */\r
2696 \r
2697                                 /* If the task being modified is in the ready state it will need to\r
2698                                 be moved into a new list. */\r
2699                                 if( listIS_CONTAINED_WITHIN( &( pxReadyTasksLists[ pxTCB->uxPriority ] ), &( pxTCB->xGenericListItem ) ) != pdFALSE )\r
2700                                 {\r
2701                                         if( uxListRemove( &( pxTCB->xGenericListItem ) ) == ( unsigned portBASE_TYPE ) 0 )\r
2702                                         {\r
2703                                                 taskRESET_READY_PRIORITY( pxTCB->uxPriority );\r
2704                                         }\r
2705 \r
2706                                         /* Inherit the priority before being moved into the new list. */\r
2707                                         pxTCB->uxPriority = pxCurrentTCB->uxPriority;\r
2708                                         prvAddTaskToReadyList( pxTCB );\r
2709                                 }\r
2710                                 else\r
2711                                 {\r
2712                                         /* Just inherit the priority. */\r
2713                                         pxTCB->uxPriority = pxCurrentTCB->uxPriority;\r
2714                                 }\r
2715 \r
2716                                 traceTASK_PRIORITY_INHERIT( pxTCB, pxCurrentTCB->uxPriority );\r
2717                         }\r
2718                 }\r
2719         }\r
2720 \r
2721 #endif /* configUSE_MUTEXES */\r
2722 /*-----------------------------------------------------------*/\r
2723 \r
2724 #if ( configUSE_MUTEXES == 1 )\r
2725 \r
2726         void vTaskPriorityDisinherit( xTaskHandle const pxMutexHolder )\r
2727         {\r
2728         tskTCB * const pxTCB = ( tskTCB * ) pxMutexHolder;\r
2729 \r
2730                 if( pxMutexHolder != NULL )\r
2731                 {\r
2732                         if( pxTCB->uxPriority != pxTCB->uxBasePriority )\r
2733                         {\r
2734                                 /* We must be the running task to be able to give the mutex back.\r
2735                                 Remove ourselves from the ready list we currently appear in. */\r
2736                                 if( uxListRemove( &( pxTCB->xGenericListItem ) ) == ( unsigned portBASE_TYPE ) 0 )\r
2737                                 {\r
2738                                         taskRESET_READY_PRIORITY( pxTCB->uxPriority );\r
2739                                 }\r
2740 \r
2741                                 /* Disinherit the priority before adding the task into the new\r
2742                                 ready list. */\r
2743                                 traceTASK_PRIORITY_DISINHERIT( pxTCB, pxTCB->uxBasePriority );\r
2744                                 pxTCB->uxPriority = pxTCB->uxBasePriority;\r
2745                                 listSET_LIST_ITEM_VALUE( &( pxTCB->xEventListItem ), ( portTickType ) configMAX_PRIORITIES - ( portTickType ) pxTCB->uxPriority ); /*lint !e961 MISRA exception as the casts are only redundant for some ports. */\r
2746                                 prvAddTaskToReadyList( pxTCB );\r
2747                         }\r
2748                 }\r
2749         }\r
2750 \r
2751 #endif /* configUSE_MUTEXES */\r
2752 /*-----------------------------------------------------------*/\r
2753 \r
2754 #if ( portCRITICAL_NESTING_IN_TCB == 1 )\r
2755 \r
2756         void vTaskEnterCritical( void )\r
2757         {\r
2758                 portDISABLE_INTERRUPTS();\r
2759 \r
2760                 if( xSchedulerRunning != pdFALSE )\r
2761                 {\r
2762                         ( pxCurrentTCB->uxCriticalNesting )++;\r
2763                 }\r
2764         }\r
2765 \r
2766 #endif /* portCRITICAL_NESTING_IN_TCB */\r
2767 /*-----------------------------------------------------------*/\r
2768 \r
2769 #if ( portCRITICAL_NESTING_IN_TCB == 1 )\r
2770 \r
2771         void vTaskExitCritical( void )\r
2772         {\r
2773                 if( xSchedulerRunning != pdFALSE )\r
2774                 {\r
2775                         if( pxCurrentTCB->uxCriticalNesting > 0U )\r
2776                         {\r
2777                                 ( pxCurrentTCB->uxCriticalNesting )--;\r
2778 \r
2779                                 if( pxCurrentTCB->uxCriticalNesting == 0U )\r
2780                                 {\r
2781                                         portENABLE_INTERRUPTS();\r
2782                                 }\r
2783                         }\r
2784                 }\r
2785         }\r
2786 \r
2787 #endif /* portCRITICAL_NESTING_IN_TCB */\r
2788 /*-----------------------------------------------------------*/\r
2789 \r
2790 #if ( ( configUSE_TRACE_FACILITY == 1 ) && ( configUSE_STATS_FORMATTING_FUNCTIONS == 1 ) )\r
2791 \r
2792         void vTaskList( signed char *pcWriteBuffer )\r
2793         {\r
2794         xTaskStatusType *pxTaskStatusArray;\r
2795         volatile unsigned portBASE_TYPE uxArraySize, x;\r
2796         char cStatus;\r
2797 \r
2798                 /*\r
2799                  * PLEASE NOTE:\r
2800                  *\r
2801                  * This function is provided for convenience only, and is used by many\r
2802                  * of the demo applications.  Do not consider it to be part of the\r
2803                  * scheduler.\r
2804                  *\r
2805                  * vTaskList() calls uxTaskGetSystemState(), then formats part of the\r
2806                  * uxTaskGetSystemState() output into a human readable table that\r
2807                  * displays task names, states and stack usage.\r
2808                  *\r
2809                  * vTaskList() has a dependency on the sprintf() C library function that\r
2810                  * might bloat the code size, use a lot of stack, and provide different\r
2811                  * results on different platforms.  An alternative, tiny, third party,\r
2812                  * and limited functionality implementation of sprintf() is provided in\r
2813                  * many of the FreeRTOS/Demo sub-directories in a file called\r
2814                  * printf-stdarg.c (note printf-stdarg.c does not provide a full\r
2815                  * snprintf() implementation!).\r
2816                  *\r
2817                  * It is recommended that production systems call uxTaskGetSystemState()\r
2818                  * directly to get access to raw stats data, rather than indirectly\r
2819                  * through a call to vTaskList().\r
2820                  */\r
2821 \r
2822 \r
2823                 /* Make sure the write buffer does not contain a string. */\r
2824                 *pcWriteBuffer = 0x00;\r
2825 \r
2826                 /* Take a snapshot of the number of tasks in case it changes while this\r
2827                 function is executing. */\r
2828                 uxArraySize = uxCurrentNumberOfTasks;\r
2829 \r
2830                 /* Allocate an array index for each task. */\r
2831                 pxTaskStatusArray = pvPortMalloc( uxCurrentNumberOfTasks * sizeof( xTaskStatusType ) );\r
2832 \r
2833                 if( pxTaskStatusArray != NULL )\r
2834                 {\r
2835                         /* Generate the (binary) data. */\r
2836                         uxArraySize = uxTaskGetSystemState( pxTaskStatusArray, uxArraySize, NULL );\r
2837 \r
2838                         /* Create a human readable table from the binary data. */\r
2839                         for( x = 0; x < uxArraySize; x++ )\r
2840                         {\r
2841                                 switch( pxTaskStatusArray[ x ].eCurrentState )\r
2842                                 {\r
2843                                 case eReady:            cStatus = tskREADY_CHAR;\r
2844                                                                         break;\r
2845 \r
2846                                 case eBlocked:          cStatus = tskBLOCKED_CHAR;\r
2847                                                                         break;\r
2848 \r
2849                                 case eSuspended:        cStatus = tskSUSPENDED_CHAR;\r
2850                                                                         break;\r
2851 \r
2852                                 case eDeleted:          cStatus = tskDELETED_CHAR;\r
2853                                                                         break;\r
2854 \r
2855                                 default:                        /* Should not get here, but it is included\r
2856                                                                         to prevent static checking errors. */\r
2857                                                                         cStatus = 0x00;\r
2858                                                                         break;\r
2859                                 }\r
2860 \r
2861                                 sprintf( ( char * ) pcWriteBuffer, ( char * ) "%s\t\t%c\t%u\t%u\t%u\r\n", pxTaskStatusArray[ x ].pcTaskName, cStatus, ( unsigned int ) pxTaskStatusArray[ x ].uxCurrentPriority, ( unsigned int ) pxTaskStatusArray[ x ].usStackHighWaterMark, ( unsigned int ) pxTaskStatusArray[ x ].xTaskNumber );\r
2862                                 pcWriteBuffer += strlen( ( char * ) pcWriteBuffer );\r
2863                         }\r
2864 \r
2865                         /* Free the array again. */\r
2866                         vPortFree( pxTaskStatusArray );\r
2867                 }\r
2868         }\r
2869 \r
2870 #endif /* configUSE_TRACE_FACILITY */\r
2871 /*----------------------------------------------------------*/\r
2872 \r
2873 #if ( ( configGENERATE_RUN_TIME_STATS == 1 ) && ( configUSE_STATS_FORMATTING_FUNCTIONS == 1 ) )\r
2874 \r
2875         void vTaskGetRunTimeStats( signed char *pcWriteBuffer )\r
2876         {\r
2877         xTaskStatusType *pxTaskStatusArray;\r
2878         volatile unsigned portBASE_TYPE uxArraySize, x;\r
2879         unsigned long ulTotalTime, ulStatsAsPercentage;\r
2880 \r
2881                 /*\r
2882                  * PLEASE NOTE:\r
2883                  *\r
2884                  * This function is provided for convenience only, and is used by many\r
2885                  * of the demo applications.  Do not consider it to be part of the\r
2886                  * scheduler.\r
2887                  *\r
2888                  * vTaskGetRunTimeStats() calls uxTaskGetSystemState(), then formats part\r
2889                  * of the uxTaskGetSystemState() output into a human readable table that\r
2890                  * displays the amount of time each task has spent in the Running state\r
2891                  * in both absolute and percentage terms.\r
2892                  *\r
2893                  * vTaskGetRunTimeStats() has a dependency on the sprintf() C library\r
2894                  * function that might bloat the code size, use a lot of stack, and\r
2895                  * provide different results on different platforms.  An alternative,\r
2896                  * tiny, third party, and limited functionality implementation of\r
2897                  * sprintf() is provided in many of the FreeRTOS/Demo sub-directories in\r
2898                  * a file called printf-stdarg.c (note printf-stdarg.c does not provide\r
2899                  * a full snprintf() implementation!).\r
2900                  *\r
2901                  * It is recommended that production systems call uxTaskGetSystemState()\r
2902                  * directly to get access to raw stats data, rather than indirectly\r
2903                  * through a call to vTaskGetRunTimeStats().\r
2904                  */\r
2905 \r
2906                 /* Make sure the write buffer does not contain a string. */\r
2907                 *pcWriteBuffer = 0x00;\r
2908 \r
2909                 /* Take a snapshot of the number of tasks in case it changes while this\r
2910                 function is executing. */\r
2911                 uxArraySize = uxCurrentNumberOfTasks;\r
2912 \r
2913                 /* Allocate an array index for each task. */\r
2914                 pxTaskStatusArray = pvPortMalloc( uxCurrentNumberOfTasks * sizeof( xTaskStatusType ) );\r
2915 \r
2916                 if( pxTaskStatusArray != NULL )\r
2917                 {\r
2918                         /* Generate the (binary) data. */\r
2919                         uxArraySize = uxTaskGetSystemState( pxTaskStatusArray, uxArraySize, &ulTotalTime );\r
2920 \r
2921                         /* For percentage calculations. */\r
2922                         ulTotalTime /= 100UL;\r
2923 \r
2924                         /* Avoid divide by zero errors. */\r
2925                         if( ulTotalTime > 0 )\r
2926                         {\r
2927                                 /* Create a human readable table from the binary data. */\r
2928                                 for( x = 0; x < uxArraySize; x++ )\r
2929                                 {\r
2930                                         /* What percentage of the total run time has the task used?\r
2931                                         This will always be rounded down to the nearest integer.\r
2932                                         ulTotalRunTimeDiv100 has already been divided by 100. */\r
2933                                         ulStatsAsPercentage = pxTaskStatusArray[ x ].ulRunTimeCounter / ulTotalTime;\r
2934 \r
2935                                         if( ulStatsAsPercentage > 0UL )\r
2936                                         {\r
2937                                                 #ifdef portLU_PRINTF_SPECIFIER_REQUIRED\r
2938                                                 {\r
2939                                                         sprintf( ( char * ) pcWriteBuffer, ( char * ) "%s\t\t%lu\t\t%lu%%\r\n", pxTaskStatusArray[ x ].pcTaskName, pxTaskStatusArray[ x ].ulRunTimeCounter, ulStatsAsPercentage );\r
2940                                                 }\r
2941                                                 #else\r
2942                                                 {\r
2943                                                         /* sizeof( int ) == sizeof( long ) so a smaller\r
2944                                                         printf() library can be used. */\r
2945                                                         sprintf( ( char * ) pcWriteBuffer, ( char * ) "%s\t\t%u\t\t%u%%\r\n", pxTaskStatusArray[ x ].pcTaskName, ( unsigned int ) pxTaskStatusArray[ x ].ulRunTimeCounter, ( unsigned int ) ulStatsAsPercentage );\r
2946                                                 }\r
2947                                                 #endif\r
2948                                         }\r
2949                                         else\r
2950                                         {\r
2951                                                 /* If the percentage is zero here then the task has\r
2952                                                 consumed less than 1% of the total run time. */\r
2953                                                 #ifdef portLU_PRINTF_SPECIFIER_REQUIRED\r
2954                                                 {\r
2955                                                         sprintf( ( char * ) pcWriteBuffer, ( char * ) "%s\t\t%lu\t\t<1%%\r\n", pxTaskStatusArray[ x ].pcTaskName, pxTaskStatusArray[ x ].ulRunTimeCounter );\r
2956                                                 }\r
2957                                                 #else\r
2958                                                 {\r
2959                                                         /* sizeof( int ) == sizeof( long ) so a smaller\r
2960                                                         printf() library can be used. */\r
2961                                                         sprintf( ( char * ) pcWriteBuffer, ( char * ) "%s\t\t%u\t\t<1%%\r\n", pxTaskStatusArray[ x ].pcTaskName, ( unsigned int ) pxTaskStatusArray[ x ].ulRunTimeCounter );\r
2962                                                 }\r
2963                                                 #endif\r
2964                                         }\r
2965 \r
2966                                         pcWriteBuffer += strlen( ( char * ) pcWriteBuffer );\r
2967                                 }\r
2968                         }\r
2969 \r
2970                         /* Free the array again. */\r
2971                         vPortFree( pxTaskStatusArray );\r
2972                 }\r
2973         }\r
2974 \r
2975 #endif /* configGENERATE_RUN_TIME_STATS */\r
2976 \r
2977 \r
2978 \r