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