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