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