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