]> git.sur5r.net Git - freertos/blob - Source/tasks.c
Changes ready for V4.1.0.
[freertos] / Source / tasks.c
1 /*\r
2         FreeRTOS.org V4.0.5 - Copyright (C) 2003-2006 Richard Barry.\r
3 \r
4         This file is part of the FreeRTOS.org distribution.\r
5 \r
6         FreeRTOS.org is free software; you can redistribute it and/or modify\r
7         it under the terms of the GNU General Public License as published by\r
8         the Free Software Foundation; either version 2 of the License, or\r
9         (at your option) any later version.\r
10 \r
11         FreeRTOS.org is distributed in the hope that it will be useful,\r
12         but WITHOUT ANY WARRANTY; without even the implied warranty of\r
13         MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
14         GNU General Public License for more details.\r
15 \r
16         You should have received a copy of the GNU General Public License\r
17         along with FreeRTOS.org; if not, write to the Free Software\r
18         Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA\r
19 \r
20         A special exception to the GPL can be applied should you wish to distribute\r
21         a combined work that includes FreeRTOS.org, without being obliged to provide\r
22         the source code for any proprietary components.  See the licensing section\r
23         of http://www.FreeRTOS.org for full details of how and when the exception\r
24         can be applied.\r
25 \r
26         ***************************************************************************\r
27         See http://www.FreeRTOS.org for documentation, latest information, license\r
28         and contact details.  Please ensure to read the configuration and relevant\r
29         port sections of the online documentation.\r
30         ***************************************************************************\r
31 */\r
32 \r
33 /*\r
34 Changes from V1.00:\r
35         \r
36         + Call to portRESTORE_CONTEXT has been removed.  The first context\r
37           switch is now performed within sPortStartScheduler().\r
38 \r
39 Changes from V1.01:\r
40 \r
41         + More use of 8bit data types.\r
42         + Function name prefixes changed where the data type returned has changed.\r
43         + configUSE_TRACE_FACILITY is no longer defined by default.\r
44 \r
45 Changes from V1.2.0\r
46 \r
47         + Introduced ucTopReadyPriority.  This tracks the highest priority ready\r
48           queue that contains a valid TCB and thus makes the context switch\r
49           slightly faster.\r
50 \r
51         + prvAddTaskToReadyQueue() has been made a macro.\r
52 \r
53 Changes from V1.2.6\r
54 \r
55         + Added conditional compilation directives.\r
56         + Extended API.\r
57         + Rearranged function order.\r
58         + Creating a task now causes a context switch if the task being created\r
59           has a higher priority than the calling task - assuming the kernel is\r
60           running.\r
61         + vTaskDelete() now only causes a context switch if the calling task is\r
62           the task being deleted.\r
63 \r
64 Changes from V2.0.0\r
65 \r
66         + Allow the type of the tick count to be 16 or 32 bits.\r
67         + Introduce xPendingReadyList feature to allow the time interrupts have to\r
68           be disabled to be minimised.\r
69         + Remove the #if( INCLUDE_vTaskSuspendAll ) statements.  vTaskSuspendAll()\r
70           is now always included as it is used by the scheduler itself.\r
71 \r
72 Changes from V2.1.0\r
73 \r
74         + Bug fix - pxCurrentTCB is now initialised before the call to\r
75           prvInitializeTaskLists().  Previously pxCurrentTCB could be accessed\r
76           while null.\r
77 \r
78 Changed from V2.1.1\r
79 \r
80         + Change to where lStackSize is declared within sTaskCreate() to prevent\r
81           compiler warnings with 8051 port.\r
82 \r
83 Changes from V2.2.0\r
84 \r
85         + Explicit use of 'signed' qualifier on portCHAR types added.\r
86         + Changed odd calculation of initial pxTopOfStack value when\r
87           portSTACK_GROWTH < 0.\r
88         + Removed pcVersionNumber definition.\r
89 \r
90 Changes from V2.5.3\r
91 \r
92         + cTaskResumeAll() modified to ensure it can be called prior to the task\r
93           lists being initialised.\r
94 \r
95 Changes from V2.5.5\r
96 \r
97         + Added API function vTaskDelayUntil().\r
98         + Added INCLUDE_vTaskDelay conditional compilation.\r
99 \r
100 Changes from V2.6.0\r
101 \r
102         + Updated the vWriteTraceToBuffer macro to always be 4 byte aligned so it\r
103           can be used on ARM architectures.\r
104         + tskMAX_TASK_NAME_LEN definition replaced with the port specific\r
105           configMAX_TASK_NAME_LEN definition.\r
106         + Removed the call to strcpy when copying across the task name into the\r
107           TCB.\r
108         + Added ucTasksDeleted variable to prevent vTaskSuspendAll() being called\r
109           too often in the idle task.\r
110 \r
111 Changes between V3.0.0 and V2.6.1\r
112 \r
113         + When resuming the scheduler a yield is performed if either a tick has\r
114           been missed, or a task is moved from the pending ready list into a ready\r
115           list.  Previously a yield was not performed on this second condition.\r
116         + Introduced the type portBASE_TYPE.  This necessitates several API\r
117           changes.\r
118         + Removed the sUsingPreemption variable.  The constant defined in\r
119           portmacro.h is now used directly.\r
120         + The idle task can now include an optional hook function - and no longer\r
121           completes its time slice if other tasks with equal priority to it are\r
122           ready to run.\r
123         + See the FreeRTOS.org documentation for more information on V2.x.x to\r
124           V3.x.x modifications.\r
125 \r
126 Changes from V3.1.1\r
127 \r
128         + Modified vTaskPrioritySet() and vTaskResume() to allow these functions to\r
129           be called while the scheduler is suspended.\r
130         + Corrected the task ordering within event lists.\r
131 \r
132 Changes from V3.2.0\r
133 \r
134         + Added function xTaskGetCurrentTaskHandle().\r
135 \r
136 Changes from V3.2.4\r
137 \r
138         + Changed the volatile declarations on some variables to reflect the \r
139           changes to the list definitions.\r
140         + Changed the order of the TCB definition so there is commonality between\r
141           the task control block and a co-routine control block.\r
142         + Allow the scheduler to be started even if no tasks other than the idle\r
143           task has been created.  This allows co-routines to run even when no tasks\r
144           have been created.\r
145         + The need for a context switch is now signalled if a task woken by an \r
146           event has a priority greater or equal to the currently running task.\r
147           Previously this was only greater than.\r
148 \r
149 Changes from V4.0.0\r
150 \r
151         + Added the xMissedYield handling.\r
152 \r
153 Changes from V4.0.1\r
154 \r
155         + The function vTaskList() now suspends the scheduler rather than disabling\r
156           interrupts during the creation of the task list.  \r
157         + Allow a task to delete itself by passing in its own handle.  Previously \r
158           this could only be done by passing in NULL.\r
159         + The tick hook function is now called only within a tick isr.  Previously\r
160           it was also called when the tick function was called during the scheduler\r
161           unlocking process.\r
162 \r
163 Changes from V4.0.3\r
164 \r
165         + Extra checks have been placed in vTaskPrioritySet() to avoid unnecessary\r
166           yields.\r
167 \r
168 Changed from V4.0.4\r
169 \r
170         + Bug fix:  The 'value' of the event list item is updated when the priority\r
171           of a task is changed.  Previously only the priority of the TCB itself was\r
172           changed.\r
173         + When resuming a task a check is first made to see if the task is actually\r
174           suspended.\r
175         + vTaskPrioritySet() and vTaskResume() no longer use the event list item.\r
176           This has not been necessary since V4.0.1 when the xMissedYield handling\r
177           was added.\r
178         + Implement xTaskResumeFromISR().\r
179 \r
180 Changes from V4.0.5\r
181 \r
182         + Added utility functions and xOverflowCount variable to facilitate the\r
183           queue.c changes.\r
184 */\r
185 \r
186 #include <stdio.h>\r
187 #include <stdlib.h>\r
188 #include <string.h>\r
189 \r
190 #include "FreeRTOS.h"\r
191 #include "task.h"\r
192 \r
193 /*\r
194  * Macro to define the amount of stack available to the idle task.\r
195  */\r
196 #define tskIDLE_STACK_SIZE      configMINIMAL_STACK_SIZE\r
197 \r
198 \r
199 /*\r
200  * Default a definitions for backwards compatibility with old\r
201  * portmacro.h files.\r
202  */\r
203 #ifndef configMAX_TASK_NAME_LEN\r
204         #define configMAX_TASK_NAME_LEN 16\r
205 #endif\r
206 \r
207 #ifndef INCLUDE_xTaskGetCurrentTaskHandle\r
208         #define INCLUDE_xTaskGetCurrentTaskHandle 0\r
209 #endif\r
210 \r
211 #ifndef configIDLE_SHOULD_YIELD\r
212         #define configIDLE_SHOULD_YIELD         1\r
213 #endif\r
214 \r
215 #if configMAX_TASK_NAME_LEN < 1\r
216         #undef configMAX_TASK_NAME_LEN\r
217         #define configMAX_TASK_NAME_LEN 1\r
218 #endif\r
219 \r
220 #ifndef INCLUDE_xTaskResumeFromISR\r
221         #define INCLUDE_xTaskResumeFromISR 1\r
222 #endif \r
223 \r
224 /*\r
225  * Task control block.  A task control block (TCB) is allocated to each task,\r
226  * and stores the context of the task.\r
227  */\r
228 typedef struct tskTaskControlBlock\r
229 {\r
230         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
231         xListItem                               xGenericListItem;       /*< List item used to place the TCB in ready and blocked queues. */\r
232         xListItem                               xEventListItem;         /*< List item used to place the TCB in event lists. */\r
233         unsigned portBASE_TYPE  uxPriority;                     /*< The priority of the task where 0 is the lowest priority. */\r
234         portSTACK_TYPE                  *pxStack;                       /*< Points to the start of the stack. */\r
235         unsigned portBASE_TYPE  uxTCBNumber;            /*< This is used for tracing the scheduler and making debugging easier only. */\r
236         signed portCHAR                 pcTaskName[ configMAX_TASK_NAME_LEN ];/*< Descriptive name given to the task when created.  Facilitates debugging only. */\r
237         unsigned portSHORT              usStackDepth;           /*< Total depth of the stack (when empty).  This is defined as the number of variables the stack can hold, not the number of bytes. */\r
238 } tskTCB;\r
239 \r
240 /*lint -e956 */\r
241 \r
242 tskTCB * volatile pxCurrentTCB = NULL;                                  \r
243 \r
244 /* Lists for ready and blocked tasks. --------------------*/\r
245 \r
246 static xList pxReadyTasksLists[ configMAX_PRIORITIES ]; /*< Prioritised ready tasks. */\r
247 static xList xDelayedTaskList1;                                                 /*< Delayed tasks. */\r
248 static xList xDelayedTaskList2;                                                 /*< Delayed tasks (two lists are used - one for delays that have overflowed the current tick count. */\r
249 static xList * volatile pxDelayedTaskList;                              /*< Points to the delayed task list currently being used. */\r
250 static xList * volatile pxOverflowDelayedTaskList;              /*< Points to the delayed task list currently being used to hold tasks that have overflowed the current tick count. */\r
251 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
252 \r
253 #if ( INCLUDE_vTaskDelete == 1 )\r
254 \r
255         static volatile xList xTasksWaitingTermination;         /*< Tasks that have been deleted - but the their memory not yet freed. */\r
256         static volatile unsigned portBASE_TYPE uxTasksDeleted = ( unsigned portBASE_TYPE ) 0;\r
257 \r
258 #endif\r
259 \r
260 #if ( INCLUDE_vTaskSuspend == 1 )\r
261 \r
262         static xList xSuspendedTaskList;                                        /*< Tasks that are currently suspended. */\r
263 \r
264 #endif\r
265 \r
266 /* File private variables. --------------------------------*/\r
267 static volatile unsigned portBASE_TYPE uxCurrentNumberOfTasks   = ( unsigned portBASE_TYPE ) 0;\r
268 static volatile portTickType xTickCount                                                 = ( portTickType ) 0;\r
269 static unsigned portBASE_TYPE uxTopUsedPriority                                 = tskIDLE_PRIORITY;\r
270 static volatile unsigned portBASE_TYPE uxTopReadyPriority               = tskIDLE_PRIORITY;\r
271 static volatile signed portBASE_TYPE xSchedulerRunning                  = pdFALSE;\r
272 static volatile unsigned portBASE_TYPE uxSchedulerSuspended             = ( unsigned portBASE_TYPE ) pdFALSE;\r
273 static volatile unsigned portBASE_TYPE uxMissedTicks                    = ( unsigned portBASE_TYPE ) 0;\r
274 static volatile portBASE_TYPE xMissedYield                                              = ( portBASE_TYPE ) pdFALSE;\r
275 static volatile portBASE_TYPE xNumOfOverflows                                   = ( portBASE_TYPE ) 0;\r
276 /* Debugging and trace facilities private variables and macros. ------------*/\r
277 \r
278 /*\r
279  * The value used to fill the stack of a task when the task is created.  This\r
280  * is used purely for checking the high water mark for tasks.\r
281  */\r
282 #define tskSTACK_FILL_BYTE      ( 0xa5 )\r
283 \r
284 /*\r
285  * Macros used by vListTask to indicate which state a task is in.\r
286  */\r
287 #define tskBLOCKED_CHAR         ( ( signed portCHAR ) 'B' )\r
288 #define tskREADY_CHAR           ( ( signed portCHAR ) 'R' )\r
289 #define tskDELETED_CHAR         ( ( signed portCHAR ) 'D' )\r
290 #define tskSUSPENDED_CHAR       ( ( signed portCHAR ) 'S' )\r
291 \r
292 /*\r
293  * Macros and private variables used by the trace facility.\r
294  */\r
295 #if ( configUSE_TRACE_FACILITY == 1 )\r
296 \r
297         #define tskSIZE_OF_EACH_TRACE_LINE                      ( ( unsigned portLONG ) ( sizeof( unsigned portLONG ) + sizeof( unsigned portLONG ) ) )\r
298         static volatile signed portCHAR * volatile pcTraceBuffer;\r
299         static signed portCHAR *pcTraceBufferStart;\r
300         static signed portCHAR *pcTraceBufferEnd;\r
301         static signed portBASE_TYPE xTracing = pdFALSE;\r
302 \r
303 #endif\r
304 \r
305 /*\r
306  * Macro that writes a trace of scheduler activity to a buffer.  This trace\r
307  * shows which task is running when and is very useful as a debugging tool.\r
308  * As this macro is called each context switch it is a good idea to undefine\r
309  * it if not using the facility.\r
310  */\r
311 #if ( configUSE_TRACE_FACILITY == 1 )\r
312 \r
313         #define vWriteTraceToBuffer()                                                                                                                                   \\r
314         {                                                                                                                                                                                               \\r
315                 if( xTracing )                                                                                                                                                          \\r
316                 {                                                                                                                                                                                       \\r
317                         static unsigned portBASE_TYPE uxPreviousTask = 255;                                                                             \\r
318                                                                                                                                                                                                         \\r
319                         if( uxPreviousTask != pxCurrentTCB->uxTCBNumber )                                                                               \\r
320                         {                                                                                                                                                                               \\r
321                                 if( ( pcTraceBuffer + tskSIZE_OF_EACH_TRACE_LINE ) < pcTraceBufferEnd )                         \\r
322                                 {                                                                                                                                                                       \\r
323                                         uxPreviousTask = pxCurrentTCB->uxTCBNumber;                                                                             \\r
324                                         *( unsigned portLONG * ) pcTraceBuffer = ( unsigned portLONG ) xTickCount;              \\r
325                                         pcTraceBuffer += sizeof( unsigned portLONG );                                                                   \\r
326                                         *( unsigned portLONG * ) pcTraceBuffer = ( unsigned portLONG ) uxPreviousTask;  \\r
327                                         pcTraceBuffer += sizeof( unsigned portLONG );                                                                   \\r
328                                 }                                                                                                                                                                       \\r
329                                 else                                                                                                                                                            \\r
330                                 {                                                                                                                                                                       \\r
331                                         xTracing = pdFALSE;                                                                                                                             \\r
332                                 }                                                                                                                                                                       \\r
333                         }                                                                                                                                                                               \\r
334                 }                                                                                                                                                                                       \\r
335         }\r
336 \r
337 #else\r
338 \r
339         #define vWriteTraceToBuffer()\r
340 \r
341 #endif\r
342 \r
343 \r
344 /*\r
345  * Place the task represented by pxTCB into the appropriate ready queue for\r
346  * the task.  It is inserted at the end of the list.  One quirk of this is\r
347  * that if the task being inserted is at the same priority as the currently\r
348  * executing task, then it will only be rescheduled after the currently\r
349  * executing task has been rescheduled.\r
350  */\r
351 #define prvAddTaskToReadyQueue( pxTCB )                                                                                                                                                 \\r
352 {                                                                                                                                                                                                                               \\r
353         if( pxTCB->uxPriority > uxTopReadyPriority )                                                                                                                            \\r
354         {                                                                                                                                                                                                                       \\r
355                 uxTopReadyPriority = pxTCB->uxPriority;                                                                                                                                 \\r
356         }                                                                                                                                                                                                                       \\r
357         vListInsertEnd( ( xList * ) &( pxReadyTasksLists[ pxTCB->uxPriority ] ), &( pxTCB->xGenericListItem ) );        \\r
358 }               \r
359 \r
360 /*\r
361  * Macro that looks at the list of tasks that are currently delayed to see if\r
362  * any require waking.\r
363  *\r
364  * Tasks are stored in the queue in the order of their wake time - meaning\r
365  * once one tasks has been found whose timer has not expired we need not look\r
366  * any further down the list.\r
367  */\r
368 #define prvCheckDelayedTasks()                                                                                                                                                                          \\r
369 {                                                                                                                                                                                                                                       \\r
370 register tskTCB *pxTCB;                                                                                                                                                                                         \\r
371                                                                                                                                                                                                                                         \\r
372         while( ( pxTCB = ( tskTCB * ) listGET_OWNER_OF_HEAD_ENTRY( pxDelayedTaskList ) ) != NULL )                                              \\r
373         {                                                                                                                                                                                                                               \\r
374                 if( xTickCount < listGET_LIST_ITEM_VALUE( &( pxTCB->xGenericListItem ) ) )                                                                      \\r
375                 {                                                                                                                                                                                                                       \\r
376                         break;                                                                                                                                                                                                  \\r
377                 }                                                                                                                                                                                                                       \\r
378                 vListRemove( &( pxTCB->xGenericListItem ) );                                                                                                                            \\r
379                 /* Is the task waiting on an event also? */                                                                                                                                     \\r
380                 if( pxTCB->xEventListItem.pvContainer )                                                                                                                                         \\r
381                 {                                                                                                                                                                                                                       \\r
382                         vListRemove( &( pxTCB->xEventListItem ) );                                                                                                                              \\r
383                 }                                                                                                                                                                                                                       \\r
384                 prvAddTaskToReadyQueue( pxTCB );                                                                                                                \\r
385         }                                                                                                                                                                                                                               \\r
386 }                                                                                                                                                                                       \r
387 \r
388 /*\r
389  * Several functions take an xTaskHandle parameter that can optionally be NULL,\r
390  * where NULL is used to indicate that the handle of the currently executing\r
391  * task should be used in place of the parameter.  This macro simply checks to\r
392  * see if the parameter is NULL and returns a pointer to the appropriate TCB.\r
393  */\r
394 #define prvGetTCBFromHandle( pxHandle ) ( ( pxHandle == NULL ) ? ( tskTCB * ) pxCurrentTCB : ( tskTCB * ) pxHandle )\r
395 \r
396 \r
397 /* File private functions. --------------------------------*/\r
398 \r
399 /*\r
400  * Utility to ready a TCB for a given task.  Mainly just copies the parameters\r
401  * into the TCB structure.\r
402  */\r
403 static void prvInitialiseTCBVariables( tskTCB *pxTCB, unsigned portSHORT usStackDepth, const signed portCHAR * const pcName, unsigned portBASE_TYPE uxPriority );\r
404 \r
405 /*\r
406  * Utility to ready all the lists used by the scheduler.  This is called\r
407  * automatically upon the creation of the first task.\r
408  */\r
409 static void prvInitialiseTaskLists( void );\r
410 \r
411 /*\r
412  * The idle task, which as all tasks is implemented as a never ending loop.\r
413  * The idle task is automatically created and added to the ready lists upon\r
414  * creation of the first user task.\r
415  *\r
416  * The portTASK_FUNCTION_PROTO() macro is used to allow port/compiler specific\r
417  * language extensions.  The equivalent prototype for this function is:\r
418  *\r
419  * void prvIdleTask( void *pvParameters );\r
420  *\r
421  */\r
422 static portTASK_FUNCTION_PROTO( prvIdleTask, pvParameters );\r
423 \r
424 /*\r
425  * Utility to free all memory allocated by the scheduler to hold a TCB,\r
426  * including the stack pointed to by the TCB.\r
427  *\r
428  * This does not free memory allocated by the task itself (i.e. memory\r
429  * allocated by calls to pvPortMalloc from within the tasks application code).\r
430  */\r
431 #if ( ( INCLUDE_vTaskDelete == 1 ) || ( INCLUDE_vTaskCleanUpResources == 1 ) )\r
432         static void prvDeleteTCB( tskTCB *pxTCB );\r
433 #endif\r
434 \r
435 /*\r
436  * Used only by the idle task.  This checks to see if anything has been placed\r
437  * in the list of tasks waiting to be deleted.  If so the task is cleaned up\r
438  * and its TCB deleted.\r
439  */\r
440 static void prvCheckTasksWaitingTermination( void );\r
441 \r
442 /*\r
443  * Allocates memory from the heap for a TCB and associated stack.  Checks the\r
444  * allocation was successful.\r
445  */\r
446 static tskTCB *prvAllocateTCBAndStack( unsigned portSHORT usStackDepth );\r
447 \r
448 /*\r
449  * Called from vTaskList.  vListTasks details all the tasks currently under\r
450  * control of the scheduler.  The tasks may be in one of a number of lists.\r
451  * prvListTaskWithinSingleList accepts a list and details the tasks from\r
452  * within just that list.\r
453  *\r
454  * THIS FUNCTION IS INTENDED FOR DEBUGGING ONLY, AND SHOULD NOT BE CALLED FROM\r
455  * NORMAL APPLICATION CODE.\r
456  */\r
457 #if ( configUSE_TRACE_FACILITY == 1 )\r
458 \r
459         static void prvListTaskWithinSingleList( signed portCHAR *pcWriteBuffer, xList *pxList, signed portCHAR cStatus );\r
460 \r
461 #endif\r
462 \r
463 /*\r
464  * When a task is created, the stack of the task is filled with a known value.\r
465  * This function determines the 'high water mark' of the task stack by\r
466  * determining how much of the stack remains at the original preset value.\r
467  */\r
468 #if ( configUSE_TRACE_FACILITY == 1 )\r
469 \r
470         unsigned portSHORT usTaskCheckFreeStackSpace( const unsigned portCHAR *pucStackByte );\r
471 \r
472 #endif\r
473 \r
474 /*lint +e956 */\r
475 \r
476 \r
477 \r
478 \r
479 \r
480 /*-----------------------------------------------------------\r
481  * TASK CREATION API documented in task.h\r
482  *----------------------------------------------------------*/\r
483 \r
484 signed portBASE_TYPE xTaskCreate( pdTASK_CODE pvTaskCode, const signed portCHAR * const pcName, unsigned portSHORT usStackDepth, void *pvParameters, unsigned portBASE_TYPE uxPriority, xTaskHandle *pxCreatedTask )\r
485 {\r
486 signed portBASE_TYPE xReturn;\r
487 tskTCB * pxNewTCB;\r
488 static unsigned portBASE_TYPE uxTaskNumber = 0; /*lint !e956 Static is deliberate - this is guarded before use. */\r
489 \r
490         /* Allocate the memory required by the TCB and stack for the new task.\r
491         checking that the allocation was successful. */\r
492         pxNewTCB = prvAllocateTCBAndStack( usStackDepth );\r
493 \r
494         if( pxNewTCB != NULL )\r
495         {               \r
496                 portSTACK_TYPE *pxTopOfStack;\r
497 \r
498                 /* Setup the newly allocated TCB with the initial state of the task. */\r
499                 prvInitialiseTCBVariables( pxNewTCB, usStackDepth, pcName, uxPriority );\r
500 \r
501                 /* Calculate the top of stack address.  This depends on whether the\r
502                 stack grows from high memory to low (as per the 80x86) or visa versa.\r
503                 portSTACK_GROWTH is used to make the result positive or negative as\r
504                 required by the port. */\r
505                 #if portSTACK_GROWTH < 0\r
506                 {\r
507                         pxTopOfStack = pxNewTCB->pxStack + ( pxNewTCB->usStackDepth - 1 );\r
508                 }\r
509                 #else\r
510                 {\r
511                         pxTopOfStack = pxNewTCB->pxStack;       \r
512                 }\r
513                 #endif\r
514 \r
515                 /* Initialize the TCB stack to look as if the task was already running,\r
516                 but had been interrupted by the scheduler.  The return address is set\r
517                 to the start of the task function. Once the stack has been initialised\r
518                 the     top of stack variable is updated. */\r
519                 pxNewTCB->pxTopOfStack = pxPortInitialiseStack( pxTopOfStack, pvTaskCode, pvParameters );\r
520 \r
521                 /* We are going to manipulate the task queues to add this task to a\r
522                 ready list, so must make sure no interrupts occur. */\r
523                 portENTER_CRITICAL();\r
524                 {\r
525                         uxCurrentNumberOfTasks++;\r
526                         if( uxCurrentNumberOfTasks == ( unsigned portBASE_TYPE ) 1 )\r
527                         {\r
528                                 /* As this is the first task it must also be the current task. */\r
529                                 pxCurrentTCB =  pxNewTCB;\r
530 \r
531                                 /* This is the first task to be created so do the preliminary\r
532                                 initialisation required.  We will not recover if this call\r
533                                 fails, but we will report the failure. */\r
534                                 prvInitialiseTaskLists();\r
535                         }\r
536                         else\r
537                         {       \r
538                                 /* If the scheduler is not already running, make this task the\r
539                                 current task if it is the highest priority task to be created\r
540                                 so far. */\r
541                                 if( xSchedulerRunning == pdFALSE )\r
542                                 {\r
543                                         if( pxCurrentTCB->uxPriority <= uxPriority )\r
544                                         {\r
545                                                 pxCurrentTCB = pxNewTCB;        \r
546                                         }\r
547                                 }\r
548                         }                               \r
549 \r
550                         /* Remember the top priority to make context switching faster.  Use\r
551                         the priority in pxNewTCB as this has been capped to a valid value. */\r
552                         if( pxNewTCB->uxPriority > uxTopUsedPriority )\r
553                         {\r
554                                 uxTopUsedPriority = pxNewTCB->uxPriority;\r
555                         }\r
556 \r
557                         /* Add a counter into the TCB for tracing only. */\r
558                         pxNewTCB->uxTCBNumber = uxTaskNumber;\r
559                         uxTaskNumber++;\r
560 \r
561                         prvAddTaskToReadyQueue( pxNewTCB );\r
562 \r
563                         xReturn = pdPASS;\r
564                 }\r
565                 portEXIT_CRITICAL();\r
566         }\r
567         else\r
568         {\r
569                 xReturn = errCOULD_NOT_ALLOCATE_REQUIRED_MEMORY;\r
570         }\r
571 \r
572         if( xReturn == pdPASS )\r
573         {\r
574                 if( ( void * ) pxCreatedTask != NULL )\r
575                 {\r
576                         /* Pass the TCB out - in an anonymous way.  The calling function/\r
577                         task can use this as a handle to delete the task later if\r
578                         required.*/\r
579                         *pxCreatedTask = ( xTaskHandle ) pxNewTCB;\r
580                 }\r
581 \r
582                 if( xSchedulerRunning != pdFALSE )\r
583                 {\r
584                         /* If the created task is of a higher priority than the current task\r
585                         then it should run now. */\r
586                         if( pxCurrentTCB->uxPriority < uxPriority )\r
587                         {\r
588                                 taskYIELD();\r
589                         }\r
590                 }\r
591         }\r
592 \r
593         return xReturn;\r
594 }\r
595 /*-----------------------------------------------------------*/\r
596 \r
597 #if ( INCLUDE_vTaskDelete == 1 )\r
598 \r
599         void vTaskDelete( xTaskHandle pxTaskToDelete )\r
600         {\r
601         tskTCB *pxTCB;\r
602 \r
603                 taskENTER_CRITICAL();\r
604                 {\r
605                         /* Ensure a yield is performed if the current task is being \r
606                         deleted. */\r
607                         if( pxTaskToDelete == pxCurrentTCB )\r
608                         {\r
609                                 pxTaskToDelete = NULL;\r
610                         }\r
611 \r
612                         /* If null is passed in here then we are deleting ourselves. */\r
613                         pxTCB = prvGetTCBFromHandle( pxTaskToDelete );\r
614 \r
615                         /* Remove task from the ready list and place in the     termination list.\r
616                         This will stop the task from be scheduled.  The idle task will check\r
617                         the termination list and free up any memory allocated by the\r
618                         scheduler for the TCB and stack. */\r
619                         vListRemove( &( pxTCB->xGenericListItem ) );\r
620 \r
621                         /* Is the task waiting on an event also? */                                                                                             \r
622                         if( pxTCB->xEventListItem.pvContainer )\r
623                         {\r
624                                 vListRemove( &( pxTCB->xEventListItem ) );\r
625                         }\r
626 \r
627                         vListInsertEnd( ( xList * ) &xTasksWaitingTermination, &( pxTCB->xGenericListItem ) );\r
628 \r
629                         /* Increment the ucTasksDeleted variable so the idle task knows\r
630                         there is a task that has been deleted and that it should therefore\r
631                         check the xTasksWaitingTermination list. */\r
632                         ++uxTasksDeleted;\r
633                 }\r
634                 taskEXIT_CRITICAL();\r
635 \r
636                 /* Force a reschedule if we have just deleted the current task. */\r
637                 if( xSchedulerRunning != pdFALSE ) \r
638                 {\r
639                         if( ( void * ) pxTaskToDelete == NULL )\r
640                         {\r
641                                 taskYIELD();\r
642                         }\r
643                 }\r
644         }\r
645 \r
646 #endif\r
647 \r
648 \r
649 \r
650 \r
651 \r
652 \r
653 /*-----------------------------------------------------------\r
654  * TASK CONTROL API documented in task.h\r
655  *----------------------------------------------------------*/\r
656 \r
657 #if ( INCLUDE_vTaskDelayUntil == 1 )\r
658 \r
659         void vTaskDelayUntil( portTickType *pxPreviousWakeTime, portTickType xTimeIncrement )\r
660         {\r
661         portTickType xTimeToWake;\r
662         portBASE_TYPE xAlreadyYielded, xShouldDelay = pdFALSE;\r
663 \r
664                 vTaskSuspendAll();\r
665                 {\r
666                         /* Generate the tick time at which the task wants to wake. */\r
667                         xTimeToWake = *pxPreviousWakeTime + xTimeIncrement;\r
668 \r
669                         if( xTickCount < *pxPreviousWakeTime )\r
670                         {\r
671                                 /* The tick count has overflowed since this function was\r
672                                 lasted called.  In this case the only time we should ever\r
673                                 actually delay is if the wake time has also     overflowed,\r
674                                 and the wake time is greater than the tick time.  When this\r
675                                 is the case it is as if neither time had overflowed. */\r
676                                 if( ( xTimeToWake < *pxPreviousWakeTime ) && ( xTimeToWake > xTickCount ) )\r
677                                 {\r
678                                         xShouldDelay = pdTRUE;\r
679                                 }\r
680                         }\r
681                         else\r
682                         {\r
683                                 /* The tick time has not overflowed.  In this case we will\r
684                                 delay if either the wake time has overflowed, and/or the\r
685                                 tick time is less than the wake time. */\r
686                                 if( ( xTimeToWake < *pxPreviousWakeTime ) || ( xTimeToWake > xTickCount ) )\r
687                                 {\r
688                                         xShouldDelay = pdTRUE;\r
689                                 }\r
690                         }\r
691 \r
692                         /* Update the wake time ready for the next call. */\r
693                         *pxPreviousWakeTime = xTimeToWake;\r
694 \r
695                         if( xShouldDelay )\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                 }\r
719                 xAlreadyYielded = xTaskResumeAll();\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                         taskYIELD();\r
726                 }\r
727         }       \r
728         \r
729 #endif\r
730 /*-----------------------------------------------------------*/\r
731 \r
732 #if ( INCLUDE_vTaskDelay == 1 )\r
733 \r
734         void vTaskDelay( portTickType xTicksToDelay )\r
735         {\r
736         portTickType xTimeToWake;\r
737         signed portBASE_TYPE xAlreadyYielded = pdFALSE;\r
738 \r
739                 /* A delay time of zero just forces a reschedule. */\r
740                 if( xTicksToDelay > ( portTickType ) 0 )\r
741                 {\r
742                         vTaskSuspendAll();\r
743                         {\r
744                                 /* A task that is removed from the event list while the\r
745                                 scheduler is suspended will not get placed in the ready\r
746                                 list or removed from the blocked list until the scheduler\r
747                                 is resumed.\r
748                                 \r
749                                 This task cannot be in an event list as it is the currently\r
750                                 executing task. */\r
751 \r
752                                 /* Calculate the time to wake - this may overflow but this is\r
753                                 not a problem. */\r
754                                 xTimeToWake = xTickCount + xTicksToDelay;\r
755 \r
756                                 /* We must remove ourselves from the ready list before adding\r
757                                 ourselves to the blocked list as the same list item is used for\r
758                                 both lists. */\r
759                                 vListRemove( ( xListItem * ) &( pxCurrentTCB->xGenericListItem ) );\r
760 \r
761                                 /* The list item will be inserted in wake time order. */\r
762                                 listSET_LIST_ITEM_VALUE( &( pxCurrentTCB->xGenericListItem ), xTimeToWake );\r
763 \r
764                                 if( xTimeToWake < xTickCount )\r
765                                 {\r
766                                         /* Wake time has overflowed.  Place this item in the\r
767                                         overflow list. */\r
768                                         vListInsert( ( xList * ) pxOverflowDelayedTaskList, ( xListItem * ) &( pxCurrentTCB->xGenericListItem ) );\r
769                                 }\r
770                                 else\r
771                                 {\r
772                                         /* The wake time has not overflowed, so we can use the\r
773                                         current block list. */\r
774                                         vListInsert( ( xList * ) pxDelayedTaskList, ( xListItem * ) &( pxCurrentTCB->xGenericListItem ) );\r
775                                 }\r
776                         }\r
777                         xAlreadyYielded = xTaskResumeAll();\r
778                 }\r
779                 \r
780                 /* Force a reschedule if xTaskResumeAll has not already done so, we may\r
781                 have put ourselves to sleep. */\r
782                 if( !xAlreadyYielded )\r
783                 {\r
784                         taskYIELD();\r
785                 }\r
786         }\r
787         \r
788 #endif\r
789 /*-----------------------------------------------------------*/\r
790 \r
791 #if ( INCLUDE_uxTaskPriorityGet == 1 )\r
792 \r
793         unsigned portBASE_TYPE uxTaskPriorityGet( xTaskHandle pxTask )\r
794         {\r
795         tskTCB *pxTCB;\r
796         unsigned portBASE_TYPE uxReturn;\r
797 \r
798                 taskENTER_CRITICAL();\r
799                 {\r
800                         /* If null is passed in here then we are changing the\r
801                         priority of the calling function. */\r
802                         pxTCB = prvGetTCBFromHandle( pxTask );\r
803                         uxReturn = pxTCB->uxPriority;\r
804                 }\r
805                 taskEXIT_CRITICAL();\r
806 \r
807                 return uxReturn;\r
808         }\r
809 \r
810 #endif\r
811 /*-----------------------------------------------------------*/\r
812 \r
813 #if ( INCLUDE_vTaskPrioritySet == 1 )\r
814 \r
815         void vTaskPrioritySet( xTaskHandle pxTask, unsigned portBASE_TYPE uxNewPriority )\r
816         {\r
817         tskTCB *pxTCB;\r
818         unsigned portBASE_TYPE uxCurrentPriority, xYieldRequired = pdFALSE;\r
819 \r
820                 /* Ensure the new priority is valid. */\r
821                 if( uxNewPriority >= configMAX_PRIORITIES )\r
822                 {\r
823                         uxNewPriority = configMAX_PRIORITIES - 1;\r
824                 }\r
825 \r
826                 taskENTER_CRITICAL();\r
827                 {\r
828                         /* If null is passed in here then we are changing the\r
829                         priority of the calling function. */\r
830                         pxTCB = prvGetTCBFromHandle( pxTask );\r
831                         uxCurrentPriority = pxTCB->uxPriority;\r
832 \r
833                         if( uxCurrentPriority != uxNewPriority )\r
834                         {\r
835                                 /* The priority change may have readied a task of higher\r
836                                 priority than the calling task. */\r
837                                 if( uxNewPriority > pxCurrentTCB->uxPriority ) \r
838                                 {\r
839                                         if( pxTask != NULL )\r
840                                         {\r
841                                                 /* The priority of another task is being raised.  If we\r
842                                                 were raising the priority of the currently running task\r
843                                                 there would be no need to switch as it must have already\r
844                                                 been the highest priority task. */\r
845                                                 xYieldRequired = pdTRUE;\r
846                                         }\r
847                                 }\r
848                                 else if( pxTask == NULL )\r
849                                 {\r
850                                         /* Setting our own priority down means there may now be another\r
851                                         task of higher priority that is ready to execute. */\r
852                                         xYieldRequired = pdTRUE;\r
853                                 }\r
854                         \r
855                                 pxTCB->uxPriority = uxNewPriority;\r
856                                 listSET_LIST_ITEM_VALUE( &( pxTCB->xEventListItem ), configMAX_PRIORITIES - ( portTickType ) uxNewPriority );\r
857 \r
858                                 /* If the task is in the blocked or suspended list we need do\r
859                                 nothing more than change it's priority variable. However, if\r
860                                 the task is in a ready list it needs to be removed and placed\r
861                                 in the queue appropriate to its new priority. */\r
862                                 if( listIS_CONTAINED_WITHIN( &( pxReadyTasksLists[ uxCurrentPriority ] ), &( pxTCB->xGenericListItem ) ) )\r
863                                 {\r
864                                         /* The task is currently in its ready list - remove before adding\r
865                                         it to it's new ready list.  As we are in a critical section we\r
866                                         can do this even if the scheduler is suspended. */\r
867                                         vListRemove( &( pxTCB->xGenericListItem ) );\r
868                                         prvAddTaskToReadyQueue( pxTCB );\r
869                                 }                       \r
870                                 \r
871                                 if( xYieldRequired == pdTRUE )\r
872                                 {\r
873                                         taskYIELD();\r
874                                 }                               \r
875                         }\r
876                 }\r
877                 taskEXIT_CRITICAL();\r
878         }\r
879 \r
880 #endif\r
881 /*-----------------------------------------------------------*/\r
882 \r
883 #if ( INCLUDE_vTaskSuspend == 1 )\r
884 \r
885         void vTaskSuspend( xTaskHandle pxTaskToSuspend )\r
886         {\r
887         tskTCB *pxTCB;\r
888 \r
889                 taskENTER_CRITICAL();\r
890                 {\r
891                         /* Ensure a yield is performed if the current task is being \r
892                         suspended. */\r
893                         if( pxTaskToSuspend == pxCurrentTCB )\r
894                         {\r
895                                 pxTaskToSuspend = NULL;\r
896                         }\r
897 \r
898                         /* If null is passed in here then we are suspending ourselves. */\r
899                         pxTCB = prvGetTCBFromHandle( pxTaskToSuspend );\r
900 \r
901                         /* Remove task from the ready/delayed list and place in the     suspended list. */\r
902                         vListRemove( &( pxTCB->xGenericListItem ) );\r
903 \r
904                         /* Is the task waiting on an event also? */                                                                                             \r
905                         if( pxTCB->xEventListItem.pvContainer )\r
906                         {\r
907                                 vListRemove( &( pxTCB->xEventListItem ) );\r
908                         }\r
909 \r
910                         vListInsertEnd( ( xList * ) &xSuspendedTaskList, &( pxTCB->xGenericListItem ) );\r
911                 }\r
912                 taskEXIT_CRITICAL();\r
913 \r
914                 /* We may have just suspended the current task. */\r
915                 if( ( void * ) pxTaskToSuspend == NULL )\r
916                 {\r
917                         taskYIELD();\r
918                 }\r
919         }\r
920 \r
921 #endif\r
922 /*-----------------------------------------------------------*/\r
923 \r
924 #if ( INCLUDE_vTaskSuspend == 1 )\r
925 \r
926         void vTaskResume( xTaskHandle pxTaskToResume )\r
927         {\r
928         tskTCB *pxTCB;\r
929 \r
930                 /* Remove the task from whichever list it is currently in, and place\r
931                 it in the ready list. */\r
932                 pxTCB = ( tskTCB * ) pxTaskToResume;\r
933 \r
934                 /* The parameter cannot be NULL as it is impossible to resume the\r
935                 currently executing task. */\r
936                 if( pxTCB != NULL )\r
937                 {\r
938                         taskENTER_CRITICAL();\r
939                         {\r
940                                 /* Is the task we are attempting to resume actually suspended? */\r
941                                 if( listIS_CONTAINED_WITHIN( &xSuspendedTaskList, &( pxTCB->xGenericListItem ) ) != pdFALSE )\r
942                                 {\r
943                                         /* Has the task already been resumed from within an ISR? */\r
944                                         if( listIS_CONTAINED_WITHIN( &xPendingReadyList, &( pxTCB->xEventListItem ) ) != pdTRUE )\r
945                                         {                       \r
946                                                 /* As we are in a critical section we can access the ready \r
947                                                 lists even if the scheduler is suspended. */\r
948                                                 vListRemove(  &( pxTCB->xGenericListItem ) );\r
949                                                 prvAddTaskToReadyQueue( pxTCB );\r
950 \r
951                                                 /* We may have just resumed a higher priority task. */\r
952                                                 if( pxTCB->uxPriority >= pxCurrentTCB->uxPriority )\r
953                                                 {\r
954                                                         /* This yield may not cause the task just resumed to run, but\r
955                                                         will leave the lists in the correct state for the next yield. */\r
956                                                         taskYIELD();\r
957                                                 }\r
958                                         }\r
959                                 }\r
960                         }\r
961                         taskEXIT_CRITICAL();\r
962                 }\r
963         }\r
964 \r
965 #endif\r
966 \r
967 /*-----------------------------------------------------------*/\r
968 \r
969 #if ( ( INCLUDE_xTaskResumeFromISR == 1 ) && ( INCLUDE_vTaskSuspend == 1 ) )\r
970 \r
971         portBASE_TYPE xTaskResumeFromISR( xTaskHandle pxTaskToResume )\r
972         {\r
973         portBASE_TYPE xYieldRequired = pdFALSE;\r
974         tskTCB *pxTCB;\r
975 \r
976                 pxTCB = ( tskTCB * ) pxTaskToResume;\r
977 \r
978                 /* Is the task we are attempting to resume actually suspended? */\r
979                 if( listIS_CONTAINED_WITHIN( &xSuspendedTaskList, &( pxTCB->xGenericListItem ) ) != pdFALSE )\r
980                 {\r
981                         /* Has the task already been resumed from within an ISR? */\r
982                         if( listIS_CONTAINED_WITHIN( &xPendingReadyList, &( pxTCB->xEventListItem ) ) != pdTRUE )\r
983                         {\r
984                                 if( uxSchedulerSuspended == ( unsigned portBASE_TYPE ) pdFALSE )\r
985                                 {\r
986                                         xYieldRequired = ( pxTCB->uxPriority >= pxCurrentTCB->uxPriority );\r
987                                         vListRemove(  &( pxTCB->xGenericListItem ) );   \r
988                                         prvAddTaskToReadyQueue( pxTCB );\r
989                                 }\r
990                                 else\r
991                                 {\r
992                                         /* We cannot access the delayed or ready lists, so will hold this\r
993                                         task pending until the scheduler is resumed, at which point a \r
994                                         yield will be preformed if necessary. */\r
995                                         vListInsertEnd( ( xList * ) &( xPendingReadyList ), &( pxTCB->xEventListItem ) );\r
996                                 }\r
997                         }\r
998                 }\r
999 \r
1000                 return xYieldRequired;\r
1001         }\r
1002 \r
1003 #endif\r
1004 \r
1005 \r
1006 \r
1007 \r
1008 /*-----------------------------------------------------------\r
1009  * PUBLIC SCHEDULER CONTROL documented in task.h\r
1010  *----------------------------------------------------------*/\r
1011 \r
1012 \r
1013 void vTaskStartScheduler( void )\r
1014 {\r
1015 portBASE_TYPE xReturn;\r
1016 \r
1017         /* Add the idle task at the lowest priority. */\r
1018         xReturn = xTaskCreate( prvIdleTask, ( signed portCHAR * ) "IDLE", tskIDLE_STACK_SIZE, ( void * ) NULL, tskIDLE_PRIORITY, ( xTaskHandle * ) NULL );\r
1019 \r
1020         if( xReturn == pdPASS )\r
1021         {\r
1022                 /* Interrupts are turned off here, to ensure a tick does not occur\r
1023                 before or during the call to xPortStartScheduler().  The stacks of\r
1024                 the created tasks contain a status word with interrupts switched on\r
1025                 so interrupts will automatically get re-enabled when the first task\r
1026                 starts to run.\r
1027                 \r
1028                 STEPPING THROUGH HERE USING A DEBUGGER CAN CAUSE BIG PROBLEMS IF THE\r
1029                 DEBUGGER ALLOWS INTERRUPTS TO BE PROCESSED. */\r
1030                 portDISABLE_INTERRUPTS();\r
1031 \r
1032                 xSchedulerRunning = pdTRUE;\r
1033                 xTickCount = ( portTickType ) 0;\r
1034 \r
1035                 /* Setting up the timer tick is hardware specific and thus in the\r
1036                 portable interface. */\r
1037                 if( xPortStartScheduler() )\r
1038                 {\r
1039                         /* Should not reach here as if the scheduler is running the\r
1040                         function will not return. */\r
1041                 }\r
1042                 else\r
1043                 {\r
1044                         /* Should only reach here if a task calls xTaskEndScheduler(). */\r
1045                 }\r
1046         }\r
1047 }\r
1048 /*-----------------------------------------------------------*/\r
1049 \r
1050 void vTaskEndScheduler( void )\r
1051 {\r
1052         /* Stop the scheduler interrupts and call the portable scheduler end\r
1053         routine so the original ISRs can be restored if necessary.  The port\r
1054         layer must ensure interrupts enable     bit is left in the correct state. */\r
1055         portDISABLE_INTERRUPTS();\r
1056         xSchedulerRunning = pdFALSE;\r
1057         vPortEndScheduler();\r
1058 }\r
1059 /*----------------------------------------------------------*/\r
1060 \r
1061 void vTaskSuspendAll( void )\r
1062 {\r
1063         portENTER_CRITICAL();\r
1064                 ++uxSchedulerSuspended;\r
1065         portEXIT_CRITICAL();\r
1066 }\r
1067 /*----------------------------------------------------------*/\r
1068 \r
1069 signed portBASE_TYPE xTaskResumeAll( void )\r
1070 {\r
1071 register tskTCB *pxTCB;\r
1072 signed portBASE_TYPE xAlreadyYielded = pdFALSE;\r
1073 \r
1074         /* It is possible that an ISR caused a task to be removed from an event\r
1075         list while the scheduler was suspended.  If this was the case then the\r
1076         removed task will have been added to the xPendingReadyList.  Once the\r
1077         scheduler has been resumed it is safe to move all the pending ready\r
1078         tasks from this list into their appropriate ready list. */\r
1079         portENTER_CRITICAL();\r
1080         {\r
1081                 --uxSchedulerSuspended;\r
1082 \r
1083                 if( uxSchedulerSuspended == ( unsigned portBASE_TYPE ) pdFALSE )\r
1084                 {                       \r
1085                         if( uxCurrentNumberOfTasks > ( unsigned portBASE_TYPE ) 0 )\r
1086                         {\r
1087                                 portBASE_TYPE xYieldRequired = pdFALSE;\r
1088                                 \r
1089                                 /* Move any readied tasks from the pending list into the\r
1090                                 appropriate ready list. */\r
1091                                 while( ( pxTCB = ( tskTCB * ) listGET_OWNER_OF_HEAD_ENTRY(  ( ( xList * ) &xPendingReadyList ) ) ) != NULL )\r
1092                                 {\r
1093                                         vListRemove( &( pxTCB->xEventListItem ) );\r
1094                                         vListRemove( &( pxTCB->xGenericListItem ) );\r
1095                                         prvAddTaskToReadyQueue( pxTCB );\r
1096                                         \r
1097                                         /* If we have moved a task that has a priority higher than\r
1098                                         the current task then we should yield. */\r
1099                                         if( pxTCB->uxPriority >= pxCurrentTCB->uxPriority )\r
1100                                         {\r
1101                                                 xYieldRequired = pdTRUE;\r
1102                                         }\r
1103                                 }\r
1104 \r
1105                                 /* If any ticks occurred while the scheduler was suspended then\r
1106                                 they should be processed now.  This ensures the tick count does not\r
1107                                 slip, and that any delayed tasks are resumed at the correct time. */\r
1108                                 if( uxMissedTicks > ( unsigned portBASE_TYPE ) 0 )\r
1109                                 {\r
1110                                         while( uxMissedTicks > ( unsigned portBASE_TYPE ) 0 )\r
1111                                         {\r
1112                                                 vTaskIncrementTick();\r
1113                                                 --uxMissedTicks;\r
1114                                         }\r
1115 \r
1116                                         /* As we have processed some ticks it is appropriate to yield\r
1117                                         to ensure the highest priority task that is ready to run is\r
1118                                         the task actually running. */\r
1119                                         xYieldRequired = pdTRUE;\r
1120                                 }\r
1121                                 \r
1122                                 if( ( xYieldRequired == pdTRUE ) || ( xMissedYield == pdTRUE ) )\r
1123                                 {\r
1124                                         xAlreadyYielded = pdTRUE;\r
1125                                         xMissedYield = pdFALSE;\r
1126                                         taskYIELD();\r
1127                                 }\r
1128                         }\r
1129                 }\r
1130         }\r
1131         portEXIT_CRITICAL();\r
1132 \r
1133         return xAlreadyYielded;\r
1134 }\r
1135 \r
1136 \r
1137 \r
1138 \r
1139 \r
1140 \r
1141 /*-----------------------------------------------------------\r
1142  * PUBLIC TASK UTILITIES documented in task.h\r
1143  *----------------------------------------------------------*/\r
1144 \r
1145 \r
1146 \r
1147 portTickType xTaskGetTickCount( void )\r
1148 {\r
1149 portTickType xTicks;\r
1150 \r
1151         /* Critical section required if running on a 16 bit processor. */\r
1152         taskENTER_CRITICAL();\r
1153         {\r
1154                 xTicks = xTickCount;\r
1155         }\r
1156         taskEXIT_CRITICAL();\r
1157 \r
1158         return xTicks;\r
1159 }\r
1160 /*-----------------------------------------------------------*/\r
1161 \r
1162 unsigned portBASE_TYPE uxTaskGetNumberOfTasks( void )\r
1163 {\r
1164 unsigned portBASE_TYPE uxNumberOfTasks;\r
1165 \r
1166         taskENTER_CRITICAL();\r
1167                 uxNumberOfTasks = uxCurrentNumberOfTasks;\r
1168         taskEXIT_CRITICAL();\r
1169 \r
1170         return uxNumberOfTasks;\r
1171 }\r
1172 /*-----------------------------------------------------------*/\r
1173 \r
1174 #if ( ( configUSE_TRACE_FACILITY == 1 ) && ( INCLUDE_vTaskDelete == 1 ) && ( INCLUDE_vTaskSuspend == 1 ) )\r
1175 \r
1176         void vTaskList( signed portCHAR *pcWriteBuffer )\r
1177         {\r
1178         unsigned portBASE_TYPE uxQueue;\r
1179 \r
1180                 /* This is a VERY costly function that should be used for debug only.\r
1181                 It leaves interrupts disabled for a LONG time. */\r
1182 \r
1183         vTaskSuspendAll();\r
1184                 {\r
1185                         /* Run through all the lists that could potentially contain a TCB and\r
1186                         report the task name, state and stack high water mark. */\r
1187 \r
1188                         pcWriteBuffer[ 0 ] = ( signed portCHAR ) 0x00;\r
1189                         strcat( ( portCHAR * ) pcWriteBuffer, ( const portCHAR * ) "\r\n" );\r
1190 \r
1191                         uxQueue = uxTopUsedPriority + 1;\r
1192 \r
1193                         do\r
1194                         {\r
1195                                 uxQueue--;\r
1196 \r
1197                                 if( !listLIST_IS_EMPTY( &( pxReadyTasksLists[ uxQueue ] ) ) )\r
1198                                 {\r
1199                                         prvListTaskWithinSingleList( pcWriteBuffer, ( xList * ) &( pxReadyTasksLists[ uxQueue ] ), tskREADY_CHAR );                     \r
1200                                 }\r
1201                         }while( uxQueue > ( unsigned portSHORT ) tskIDLE_PRIORITY );\r
1202 \r
1203                         if( !listLIST_IS_EMPTY( pxDelayedTaskList ) )\r
1204                         {\r
1205                                 prvListTaskWithinSingleList( pcWriteBuffer, ( xList * ) pxDelayedTaskList, tskBLOCKED_CHAR );\r
1206                         }\r
1207 \r
1208                         if( !listLIST_IS_EMPTY( pxOverflowDelayedTaskList ) )\r
1209                         {\r
1210                                 prvListTaskWithinSingleList( pcWriteBuffer, ( xList * ) pxOverflowDelayedTaskList, tskBLOCKED_CHAR );\r
1211                         }\r
1212 \r
1213                         if( !listLIST_IS_EMPTY( &xTasksWaitingTermination ) )\r
1214                         {\r
1215                                 prvListTaskWithinSingleList( pcWriteBuffer, ( xList * ) &xTasksWaitingTermination, tskDELETED_CHAR );\r
1216                         }\r
1217 \r
1218                         if( !listLIST_IS_EMPTY( &xSuspendedTaskList ) )\r
1219                         {\r
1220                                 prvListTaskWithinSingleList( pcWriteBuffer, ( xList * ) &xSuspendedTaskList, tskSUSPENDED_CHAR );\r
1221                         }\r
1222                 }\r
1223         xTaskResumeAll();\r
1224         }\r
1225 \r
1226 #endif\r
1227 /*----------------------------------------------------------*/\r
1228 \r
1229 #if ( configUSE_TRACE_FACILITY == 1 )\r
1230 \r
1231         void vTaskStartTrace( signed portCHAR * pcBuffer, unsigned portLONG ulBufferSize )\r
1232         {\r
1233                 portENTER_CRITICAL();\r
1234                 {\r
1235                         pcTraceBuffer = ( volatile signed portCHAR * volatile )pcBuffer;\r
1236                         pcTraceBufferStart = pcBuffer;\r
1237                         pcTraceBufferEnd = pcBuffer + ( ulBufferSize - tskSIZE_OF_EACH_TRACE_LINE );\r
1238                         xTracing = pdTRUE;\r
1239                 }\r
1240                 portEXIT_CRITICAL();\r
1241         }\r
1242 \r
1243 #endif\r
1244 /*----------------------------------------------------------*/\r
1245 \r
1246 #if ( configUSE_TRACE_FACILITY == 1 )\r
1247 \r
1248         unsigned portLONG ulTaskEndTrace( void )\r
1249         {\r
1250         unsigned portLONG ulBufferLength;\r
1251 \r
1252                 portENTER_CRITICAL();\r
1253                         xTracing = pdFALSE;\r
1254                 portEXIT_CRITICAL();\r
1255 \r
1256                 ulBufferLength = ( unsigned portLONG ) ( pcTraceBuffer - pcTraceBufferStart );\r
1257 \r
1258                 return ulBufferLength;\r
1259         }\r
1260 \r
1261 #endif\r
1262 \r
1263 \r
1264 \r
1265 /*-----------------------------------------------------------\r
1266  * SCHEDULER INTERNALS AVAILABLE FOR PORTING PURPOSES\r
1267  * documented in task.h\r
1268  *----------------------------------------------------------*/\r
1269 \r
1270 \r
1271 inline void vTaskIncrementTick( void )\r
1272 {\r
1273         /* Called by the portable layer each time a tick interrupt occurs.\r
1274         Increments the tick then checks to see if the new tick value will cause any\r
1275         tasks to be unblocked. */\r
1276         if( uxSchedulerSuspended == ( unsigned portBASE_TYPE ) pdFALSE )\r
1277         {\r
1278                 ++xTickCount;\r
1279                 if( xTickCount == ( portTickType ) 0 )\r
1280                 {\r
1281                         xList *pxTemp;\r
1282 \r
1283                         /* Tick count has overflowed so we need to swap the delay lists.  \r
1284                         If there are any items in pxDelayedTaskList here then there is \r
1285                         an error! */\r
1286                         pxTemp = pxDelayedTaskList;\r
1287                         pxDelayedTaskList = pxOverflowDelayedTaskList;\r
1288                         pxOverflowDelayedTaskList = pxTemp;\r
1289             xNumOfOverflows++;\r
1290                 }\r
1291 \r
1292                 /* See if this tick has made a timeout expire. */\r
1293                 prvCheckDelayedTasks();\r
1294         }\r
1295         else\r
1296         {\r
1297                 ++uxMissedTicks;\r
1298 \r
1299                 /* The tick hook gets called at regular intervals, even if the \r
1300                 scheduler is locked. */\r
1301                 #if ( configUSE_TICK_HOOK == 1 )\r
1302                 {\r
1303                         extern void vApplicationTickHook( void );\r
1304 \r
1305                         vApplicationTickHook();\r
1306                 }\r
1307                 #endif\r
1308         }\r
1309 \r
1310         #if ( configUSE_TICK_HOOK == 1 )\r
1311         {\r
1312                 extern void vApplicationTickHook( void );\r
1313 \r
1314                 /* Guard against the tick hook being called when the missed tick\r
1315                 count is being unwound (when the scheduler is being unlocked. */\r
1316                 if( uxMissedTicks == 0 )\r
1317                 {\r
1318                         vApplicationTickHook();\r
1319                 }\r
1320         }\r
1321         #endif\r
1322 }\r
1323 /*-----------------------------------------------------------*/\r
1324 \r
1325 #if ( ( INCLUDE_vTaskCleanUpResources == 1 ) && ( INCLUDE_vTaskSuspend == 1 ) )\r
1326 \r
1327         void vTaskCleanUpResources( void )\r
1328         {\r
1329         unsigned portSHORT usQueue;\r
1330         volatile tskTCB *pxTCB;\r
1331 \r
1332                 usQueue = ( unsigned portSHORT ) uxTopUsedPriority + ( unsigned portSHORT ) 1;\r
1333 \r
1334                 /* Remove any TCB's from the ready queues. */\r
1335                 do\r
1336                 {\r
1337                         usQueue--;\r
1338 \r
1339                         while( !listLIST_IS_EMPTY( &( pxReadyTasksLists[ usQueue ] ) ) )\r
1340                         {\r
1341                                 listGET_OWNER_OF_NEXT_ENTRY( pxTCB, &( pxReadyTasksLists[ usQueue ] ) );\r
1342                                 vListRemove( ( xListItem * ) &( pxTCB->xGenericListItem ) );\r
1343 \r
1344                                 prvDeleteTCB( ( tskTCB * ) pxTCB );\r
1345                         }\r
1346                 }while( usQueue > ( unsigned portSHORT ) tskIDLE_PRIORITY );\r
1347 \r
1348                 /* Remove any TCB's from the delayed queue. */\r
1349                 while( !listLIST_IS_EMPTY( &xDelayedTaskList1 ) )\r
1350                 {\r
1351                         listGET_OWNER_OF_NEXT_ENTRY( pxTCB, &xDelayedTaskList1 );\r
1352                         vListRemove( ( xListItem * ) &( pxTCB->xGenericListItem ) );\r
1353 \r
1354                         prvDeleteTCB( ( tskTCB * ) pxTCB );\r
1355                 }\r
1356 \r
1357                 /* Remove any TCB's from the overflow delayed queue. */\r
1358                 while( !listLIST_IS_EMPTY( &xDelayedTaskList2 ) )\r
1359                 {\r
1360                         listGET_OWNER_OF_NEXT_ENTRY( pxTCB, &xDelayedTaskList2 );\r
1361                         vListRemove( ( xListItem * ) &( pxTCB->xGenericListItem ) );\r
1362 \r
1363                         prvDeleteTCB( ( tskTCB * ) pxTCB );\r
1364                 }\r
1365 \r
1366                 while( !listLIST_IS_EMPTY( &xSuspendedTaskList ) )\r
1367                 {\r
1368                         listGET_OWNER_OF_NEXT_ENTRY( pxTCB, &xSuspendedTaskList );\r
1369                         vListRemove( ( xListItem * ) &( pxTCB->xGenericListItem ) );\r
1370 \r
1371                         prvDeleteTCB( ( tskTCB * ) pxTCB );\r
1372                 }               \r
1373 \r
1374                 while( !listLIST_IS_EMPTY( &xPendingReadyList ) )\r
1375                 {\r
1376                         listGET_OWNER_OF_NEXT_ENTRY( pxTCB, &xPendingReadyList );\r
1377                         vListRemove( ( xListItem * ) &( pxTCB->xGenericListItem ) );\r
1378 \r
1379                         prvDeleteTCB( ( tskTCB * ) pxTCB );\r
1380                 }               \r
1381         }\r
1382 \r
1383 #endif\r
1384 /*-----------------------------------------------------------*/\r
1385 \r
1386 void vTaskSwitchContext( void )\r
1387 {\r
1388         if( uxSchedulerSuspended != ( unsigned portBASE_TYPE ) pdFALSE )\r
1389         {\r
1390                 /* The scheduler is currently suspended - do not allow a context\r
1391                 switch. */\r
1392                 xMissedYield = pdTRUE;\r
1393                 return;\r
1394         }\r
1395 \r
1396         /* Find the highest priority queue that contains ready tasks. */\r
1397         while( listLIST_IS_EMPTY( &( pxReadyTasksLists[ uxTopReadyPriority ] ) ) )\r
1398         {\r
1399                 --uxTopReadyPriority;\r
1400         }\r
1401 \r
1402         /* listGET_OWNER_OF_NEXT_ENTRY walks through the list, so the tasks of the\r
1403         same priority get an equal share of the processor time. */\r
1404         listGET_OWNER_OF_NEXT_ENTRY( pxCurrentTCB, &( pxReadyTasksLists[ uxTopReadyPriority ] ) );\r
1405         vWriteTraceToBuffer();\r
1406 }\r
1407 /*-----------------------------------------------------------*/\r
1408 \r
1409 void vTaskPlaceOnEventList( xList *pxEventList, portTickType xTicksToWait )\r
1410 {\r
1411 portTickType xTimeToWake;\r
1412 \r
1413         /* THIS FUNCTION MUST BE CALLED WITH INTERRUPTS DISABLED OR THE\r
1414         SCHEDULER SUSPENDED. */\r
1415 \r
1416         /* Place the event list item of the TCB in the appropriate event list.\r
1417         This is placed in the list in priority order so the highest priority task\r
1418         is the first to be woken by the event. */\r
1419         vListInsert( ( xList * ) pxEventList, ( xListItem * ) &( pxCurrentTCB->xEventListItem ) );\r
1420 \r
1421         /* Calculate the time at which the task should be woken if the event does\r
1422         not occur.  This may overflow but this doesn't matter. */\r
1423         xTimeToWake = xTickCount + xTicksToWait;\r
1424 \r
1425         /* We must remove ourselves from the ready list before adding ourselves\r
1426         to the blocked list as the same list item is used for both lists.  We have\r
1427         exclusive access to the ready lists as the scheduler is locked. */\r
1428         vListRemove( ( xListItem * ) &( pxCurrentTCB->xGenericListItem ) );\r
1429 \r
1430         listSET_LIST_ITEM_VALUE( &( pxCurrentTCB->xGenericListItem ), xTimeToWake );\r
1431 \r
1432         if( xTimeToWake < xTickCount )\r
1433         {\r
1434                 /* Wake time has overflowed.  Place this item in the overflow list. */\r
1435                 vListInsert( ( xList * ) pxOverflowDelayedTaskList, ( xListItem * ) &( pxCurrentTCB->xGenericListItem ) );\r
1436         }\r
1437         else\r
1438         {\r
1439                 /* The wake time has not overflowed, so we can use the current block list. */\r
1440                 vListInsert( ( xList * ) pxDelayedTaskList, ( xListItem * ) &( pxCurrentTCB->xGenericListItem ) );\r
1441         }\r
1442 }\r
1443 /*-----------------------------------------------------------*/\r
1444 \r
1445 signed portBASE_TYPE xTaskRemoveFromEventList( const xList *pxEventList )\r
1446 {\r
1447 tskTCB *pxUnblockedTCB;\r
1448 portBASE_TYPE xReturn;\r
1449 \r
1450         /* THIS FUNCTION MUST BE CALLED WITH INTERRUPTS DISABLED OR THE\r
1451         SCHEDULER SUSPENDED.  It can also be called from within an ISR. */\r
1452 \r
1453         /* The event list is sorted in priority order, so we can remove the\r
1454         first in the list, remove the TCB from the delayed list, and add\r
1455         it to the ready list.\r
1456         \r
1457         If an event is for a queue that is locked then this function will never\r
1458         get called - the lock count on the queue will get modified instead.  This\r
1459         means we can always expect exclusive access to the event list here. */\r
1460         pxUnblockedTCB = ( tskTCB * ) listGET_OWNER_OF_HEAD_ENTRY( pxEventList );\r
1461         vListRemove( &( pxUnblockedTCB->xEventListItem ) );\r
1462 \r
1463         if( uxSchedulerSuspended == ( unsigned portBASE_TYPE ) pdFALSE )\r
1464         {\r
1465                 vListRemove( &( pxUnblockedTCB->xGenericListItem ) );\r
1466                 prvAddTaskToReadyQueue( pxUnblockedTCB );\r
1467         }\r
1468         else\r
1469         {\r
1470                 /* We cannot access the delayed or ready lists, so will hold this\r
1471                 task pending until the scheduler is resumed. */\r
1472                 vListInsertEnd( ( xList * ) &( xPendingReadyList ), &( pxUnblockedTCB->xEventListItem ) );\r
1473         }\r
1474 \r
1475         if( pxUnblockedTCB->uxPriority >= pxCurrentTCB->uxPriority )\r
1476         {\r
1477                 /* Return true if the task removed from the event list has\r
1478                 a higher priority than the calling task.  This allows\r
1479                 the calling task to know if it should force a context\r
1480                 switch now. */\r
1481                 xReturn = pdTRUE;\r
1482         }\r
1483         else\r
1484         {\r
1485                 xReturn = pdFALSE;\r
1486         }\r
1487 \r
1488         return xReturn;\r
1489 }\r
1490 /*-----------------------------------------------------------*/\r
1491 \r
1492 void vTaskSetTimeOutState( xTimeOutType *pxTimeOut )\r
1493 {\r
1494     pxTimeOut->xOverflowCount = xNumOfOverflows;\r
1495     pxTimeOut->xTimeOnEntering = xTickCount;\r
1496 }\r
1497 /*-----------------------------------------------------------*/\r
1498 \r
1499 portBASE_TYPE xTaskCheckForTimeOut( xTimeOutType *pxTimeOut, portTickType *pxTicksToWait )\r
1500 {\r
1501 portBASE_TYPE xReturn;\r
1502 \r
1503     if( ( xNumOfOverflows != pxTimeOut->xOverflowCount ) && ( xTickCount > pxTimeOut->xTimeOnEntering ) )\r
1504     {\r
1505         /* The tick count is greater than the time at which vTaskSetTimeout() \r
1506                 was called, but has also overflowed since vTaskSetTimeOut() was called.\r
1507         It must have wrapped all the way around and gone past us again. This\r
1508         passed since vTaskSetTimeout() was called. */\r
1509         xReturn = pdTRUE;\r
1510     }\r
1511     else if( ( xTickCount - pxTimeOut->xTimeOnEntering ) < *pxTicksToWait )\r
1512     {\r
1513         /* Not a genuine timeout. Adjust parameters for time remaining. */\r
1514         *pxTicksToWait -= ( xTickCount - pxTimeOut->xTimeOnEntering );\r
1515         vTaskSetTimeOutState( pxTimeOut );\r
1516         xReturn = pdFALSE;\r
1517     }\r
1518     else\r
1519     {\r
1520         xReturn = pdTRUE;\r
1521     }\r
1522 \r
1523     return xReturn;\r
1524 }\r
1525 /*-----------------------------------------------------------*/\r
1526 \r
1527 void vTaskMissedYield( void )\r
1528 {\r
1529         xMissedYield = pdTRUE;\r
1530 }\r
1531 \r
1532 /*\r
1533  * -----------------------------------------------------------\r
1534  * The Idle task.\r
1535  * ----------------------------------------------------------\r
1536  *\r
1537  * The portTASK_FUNCTION() macro is used to allow port/compiler specific\r
1538  * language extensions.  The equivalent prototype for this function is:\r
1539  *\r
1540  * void prvIdleTask( void *pvParameters );\r
1541  *\r
1542  */\r
1543 static portTASK_FUNCTION( prvIdleTask, pvParameters )\r
1544 {\r
1545         /* Stop warnings. */\r
1546         ( void ) pvParameters;\r
1547 \r
1548         for( ;; )\r
1549         {\r
1550                 /* See if any tasks have been deleted. */\r
1551                 prvCheckTasksWaitingTermination();\r
1552 \r
1553                 #if ( configUSE_PREEMPTION == 0 )\r
1554                 {\r
1555                         /* If we are not using preemption we keep forcing a task switch to\r
1556                         see if any other task has become available.  If we are using\r
1557                         preemption we don't need to do this as any task becoming available\r
1558                         will automatically get the processor anyway. */\r
1559                         taskYIELD();    \r
1560                 }\r
1561                 #endif\r
1562 \r
1563                 #if ( ( configUSE_PREEMPTION == 1 ) && ( configIDLE_SHOULD_YIELD == 1 ) )\r
1564                 {\r
1565                         /* When using preemption tasks of equal priority will be\r
1566                         timesliced.  If a task that is sharing the idle priority is ready\r
1567                         to run then the idle task should yield before the end of the\r
1568                         timeslice.\r
1569                         \r
1570                         A critical region is not required here as we are just reading from\r
1571                         the list, and an occasional incorrect value will not matter.  If\r
1572                         the ready list at the idle priority contains more than one task\r
1573                         then a task other than the idle task is ready to execute. */\r
1574                         if( listCURRENT_LIST_LENGTH( &( pxReadyTasksLists[ tskIDLE_PRIORITY ] ) ) > ( unsigned portBASE_TYPE ) 1 )\r
1575                         {\r
1576                                 taskYIELD();\r
1577                         }\r
1578                 }\r
1579                 #endif\r
1580 \r
1581                 #if ( configUSE_IDLE_HOOK == 1 )\r
1582                 {\r
1583                         extern void vApplicationIdleHook( void );\r
1584 \r
1585                         /* Call the user defined function from within the idle task.  This\r
1586                         allows the application designer to add background functionality\r
1587                         without the overhead of a separate task.\r
1588                         NOTE: vApplicationIdleHook() MUST NOT, UNDER ANY CIRCUMSTANCES,\r
1589                         CALL A FUNCTION THAT MIGHT BLOCK. */\r
1590                         vApplicationIdleHook();\r
1591                 }\r
1592                 #endif\r
1593         }\r
1594 } /*lint !e715 pvParameters is not accessed but all task functions require the same prototype. */\r
1595 \r
1596 \r
1597 \r
1598 \r
1599 \r
1600 \r
1601 \r
1602 /*-----------------------------------------------------------\r
1603  * File private functions documented at the top of the file.\r
1604  *----------------------------------------------------------*/\r
1605 \r
1606 \r
1607 \r
1608 static void prvInitialiseTCBVariables( tskTCB *pxTCB, unsigned portSHORT usStackDepth, const signed portCHAR * const pcName, unsigned portBASE_TYPE uxPriority )\r
1609 {\r
1610         pxTCB->usStackDepth = usStackDepth;\r
1611 \r
1612         /* Store the function name in the TCB. */\r
1613         strncpy( ( char * ) pxTCB->pcTaskName, ( const char * ) pcName, ( unsigned portSHORT ) configMAX_TASK_NAME_LEN );\r
1614         pxTCB->pcTaskName[ ( unsigned portSHORT ) configMAX_TASK_NAME_LEN - ( unsigned portSHORT ) 1 ] = '\0';\r
1615 \r
1616         /* This is used as an array index so must ensure it's not too large. */\r
1617         if( uxPriority >= configMAX_PRIORITIES )\r
1618         {\r
1619                 uxPriority = configMAX_PRIORITIES - 1;\r
1620         }\r
1621 \r
1622         pxTCB->uxPriority = uxPriority;\r
1623 \r
1624         vListInitialiseItem( &( pxTCB->xGenericListItem ) );\r
1625         vListInitialiseItem( &( pxTCB->xEventListItem ) );\r
1626 \r
1627         /* Set the pxTCB as a link back from the xListItem.  This is so we can get\r
1628         back to the containing TCB from a generic item in a list. */\r
1629         listSET_LIST_ITEM_OWNER( &( pxTCB->xGenericListItem ), pxTCB );\r
1630 \r
1631         /* Event lists are always in priority order. */\r
1632         listSET_LIST_ITEM_VALUE( &( pxTCB->xEventListItem ), configMAX_PRIORITIES - ( portTickType ) uxPriority );\r
1633         listSET_LIST_ITEM_OWNER( &( pxTCB->xEventListItem ), pxTCB );\r
1634 }\r
1635 /*-----------------------------------------------------------*/\r
1636 \r
1637 static void prvInitialiseTaskLists( void )\r
1638 {\r
1639 unsigned portBASE_TYPE uxPriority;\r
1640 \r
1641         for( uxPriority = 0; uxPriority < configMAX_PRIORITIES; uxPriority++ )\r
1642         {\r
1643                 vListInitialise( ( xList * ) &( pxReadyTasksLists[ uxPriority ] ) );\r
1644         }\r
1645 \r
1646         vListInitialise( ( xList * ) &xDelayedTaskList1 );\r
1647         vListInitialise( ( xList * ) &xDelayedTaskList2 );\r
1648         vListInitialise( ( xList * ) &xPendingReadyList );\r
1649 \r
1650         #if ( INCLUDE_vTaskDelete == 1 )\r
1651         {\r
1652                 vListInitialise( ( xList * ) &xTasksWaitingTermination );\r
1653         }\r
1654         #endif\r
1655 \r
1656         #if ( INCLUDE_vTaskSuspend == 1 )\r
1657         {\r
1658                 vListInitialise( ( xList * ) &xSuspendedTaskList );\r
1659         }\r
1660         #endif\r
1661 \r
1662         /* Start with pxDelayedTaskList using list1 and the pxOverflowDelayedTaskList\r
1663         using list2. */\r
1664         pxDelayedTaskList = &xDelayedTaskList1;\r
1665         pxOverflowDelayedTaskList = &xDelayedTaskList2;\r
1666 }\r
1667 /*-----------------------------------------------------------*/\r
1668 \r
1669 static void prvCheckTasksWaitingTermination( void )\r
1670 {                                                       \r
1671         #if ( INCLUDE_vTaskDelete == 1 )\r
1672         {                               \r
1673                 portBASE_TYPE xListIsEmpty;\r
1674 \r
1675                 /* ucTasksDeleted is used to prevent vTaskSuspendAll() being called\r
1676                 too often in the idle task. */\r
1677                 if( uxTasksDeleted > ( unsigned portBASE_TYPE ) 0 )\r
1678                 {\r
1679                         vTaskSuspendAll();\r
1680                                 xListIsEmpty = listLIST_IS_EMPTY( &xTasksWaitingTermination );                          \r
1681                         xTaskResumeAll();\r
1682 \r
1683                         if( !xListIsEmpty )\r
1684                         {\r
1685                                 tskTCB *pxTCB;\r
1686 \r
1687                                 portENTER_CRITICAL();\r
1688                                 {                       \r
1689                                         pxTCB = ( tskTCB * ) listGET_OWNER_OF_HEAD_ENTRY( ( ( xList * ) &xTasksWaitingTermination ) );\r
1690                                         vListRemove( &( pxTCB->xGenericListItem ) );\r
1691                                         --uxCurrentNumberOfTasks;\r
1692                                         --uxTasksDeleted;\r
1693                                 }\r
1694                                 portEXIT_CRITICAL();\r
1695 \r
1696                                 prvDeleteTCB( pxTCB );\r
1697                         }\r
1698                 }\r
1699         }\r
1700         #endif\r
1701 }\r
1702 /*-----------------------------------------------------------*/\r
1703 \r
1704 static tskTCB *prvAllocateTCBAndStack( unsigned portSHORT usStackDepth )\r
1705 {\r
1706 tskTCB *pxNewTCB;\r
1707 \r
1708         /* Allocate space for the TCB.  Where the memory comes from depends on\r
1709         the implementation of the port malloc function. */\r
1710         pxNewTCB = ( tskTCB * ) pvPortMalloc( sizeof( tskTCB ) );\r
1711 \r
1712         if( pxNewTCB != NULL )\r
1713         {\r
1714                 /* Allocate space for the stack used by the task being created.\r
1715                 The base of the stack memory stored in the TCB so the task can\r
1716                 be deleted later if required. */\r
1717                 pxNewTCB->pxStack = ( portSTACK_TYPE * ) pvPortMalloc( ( ( size_t )usStackDepth ) * sizeof( portSTACK_TYPE ) );\r
1718 \r
1719                 if( pxNewTCB->pxStack == NULL )\r
1720                 {\r
1721                         /* Could not allocate the stack.  Delete the allocated TCB. */\r
1722                         vPortFree( pxNewTCB );                  \r
1723                         pxNewTCB = NULL;                        \r
1724                 }               \r
1725                 else\r
1726                 {\r
1727                         /* Just to help debugging. */\r
1728                         memset( pxNewTCB->pxStack, tskSTACK_FILL_BYTE, usStackDepth * sizeof( portSTACK_TYPE ) );\r
1729                 }\r
1730         }\r
1731 \r
1732         return pxNewTCB;\r
1733 }\r
1734 /*-----------------------------------------------------------*/\r
1735 \r
1736 #if ( configUSE_TRACE_FACILITY == 1 )\r
1737 \r
1738         static void prvListTaskWithinSingleList( signed portCHAR *pcWriteBuffer, xList *pxList, signed portCHAR cStatus )\r
1739         {\r
1740         volatile tskTCB *pxNextTCB, *pxFirstTCB;\r
1741         static portCHAR pcStatusString[ 50 ];\r
1742         unsigned portSHORT usStackRemaining;\r
1743 \r
1744                 /* Write the details of all the TCB's in pxList into the buffer. */\r
1745                 listGET_OWNER_OF_NEXT_ENTRY( pxFirstTCB, pxList );\r
1746                 do\r
1747                 {\r
1748                         listGET_OWNER_OF_NEXT_ENTRY( pxNextTCB, pxList );\r
1749                         usStackRemaining = usTaskCheckFreeStackSpace( ( unsigned portCHAR * ) pxNextTCB->pxStack );\r
1750                         sprintf( pcStatusString, ( portCHAR * ) "%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
1751                         strcat( ( portCHAR * ) pcWriteBuffer, ( portCHAR * ) pcStatusString );\r
1752 \r
1753                 } while( pxNextTCB != pxFirstTCB );\r
1754         }\r
1755 \r
1756 #endif\r
1757 /*-----------------------------------------------------------*/\r
1758 \r
1759 #if ( configUSE_TRACE_FACILITY == 1 )\r
1760         unsigned portSHORT usTaskCheckFreeStackSpace( const unsigned portCHAR *pucStackByte )\r
1761         {\r
1762         register unsigned portSHORT usCount = 0;\r
1763 \r
1764                 while( *pucStackByte == tskSTACK_FILL_BYTE )\r
1765                 {\r
1766                         pucStackByte -= portSTACK_GROWTH;\r
1767                         usCount++;\r
1768                 }\r
1769 \r
1770                 usCount /= sizeof( portSTACK_TYPE );\r
1771 \r
1772                 return usCount;\r
1773         }\r
1774 #endif\r
1775 /*-----------------------------------------------------------*/\r
1776 \r
1777 \r
1778 \r
1779 #if ( ( INCLUDE_vTaskDelete == 1 ) || ( INCLUDE_vTaskCleanUpResources == 1 ) )\r
1780 \r
1781         static void prvDeleteTCB( tskTCB *pxTCB )\r
1782         {\r
1783                 /* Free up the memory allocated by the scheduler for the task.  It is up to\r
1784                 the task to free any memory allocated at the application level. */\r
1785                 vPortFree( pxTCB->pxStack );\r
1786                 vPortFree( pxTCB );\r
1787         }\r
1788 \r
1789 #endif\r
1790 \r
1791 \r
1792 /*-----------------------------------------------------------*/\r
1793 \r
1794 #if ( INCLUDE_xTaskGetCurrentTaskHandle == 1 )\r
1795 \r
1796         xTaskHandle xTaskGetCurrentTaskHandle( void )\r
1797         {\r
1798         xTaskHandle xReturn;\r
1799 \r
1800                 portENTER_CRITICAL();\r
1801                 {\r
1802                         xReturn = ( xTaskHandle ) pxCurrentTCB;\r
1803                 }\r
1804                 portEXIT_CRITICAL();\r
1805 \r
1806                 return xReturn;\r
1807         }\r
1808 \r
1809 #endif\r
1810 \r
1811 \r
1812 \r
1813 \r
1814 \r