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