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