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