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