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