]> git.sur5r.net Git - freertos/blob - FreeRTOS/Demo/Common/Minimal/death.c
Common scheduler code:
[freertos] / FreeRTOS / Demo / Common / Minimal / death.c
1 /*\r
2     FreeRTOS V8.2.1 - Copyright (C) 2015 Real Time Engineers Ltd.\r
3     All rights reserved\r
4 \r
5     VISIT http://www.FreeRTOS.org TO ENSURE YOU ARE USING THE LATEST VERSION.\r
6 \r
7     This file is part of the FreeRTOS distribution.\r
8 \r
9     FreeRTOS is free software; you can redistribute it and/or modify it under\r
10     the terms of the GNU General Public License (version 2) as published by the\r
11     Free Software Foundation >>!AND MODIFIED BY!<< the FreeRTOS exception.\r
12 \r
13     ***************************************************************************\r
14     >>!   NOTE: The modification to the GPL is included to allow you to     !<<\r
15     >>!   distribute a combined work that includes FreeRTOS without being   !<<\r
16     >>!   obliged to provide the source code for proprietary components     !<<\r
17     >>!   outside of the FreeRTOS kernel.                                   !<<\r
18     ***************************************************************************\r
19 \r
20     FreeRTOS is distributed in the hope that it will be useful, but WITHOUT ANY\r
21     WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS\r
22     FOR A PARTICULAR PURPOSE.  Full license text is available on the following\r
23     link: http://www.freertos.org/a00114.html\r
24 \r
25     ***************************************************************************\r
26      *                                                                       *\r
27      *    FreeRTOS provides completely free yet professionally developed,    *\r
28      *    robust, strictly quality controlled, supported, and cross          *\r
29      *    platform software that is more than just the market leader, it     *\r
30      *    is the industry's de facto standard.                               *\r
31      *                                                                       *\r
32      *    Help yourself get started quickly while simultaneously helping     *\r
33      *    to support the FreeRTOS project by purchasing a FreeRTOS           *\r
34      *    tutorial book, reference manual, or both:                          *\r
35      *    http://www.FreeRTOS.org/Documentation                              *\r
36      *                                                                       *\r
37     ***************************************************************************\r
38 \r
39     http://www.FreeRTOS.org/FAQHelp.html - Having a problem?  Start by reading\r
40     the FAQ page "My application does not run, what could be wrong?".  Have you\r
41     defined configASSERT()?\r
42 \r
43     http://www.FreeRTOS.org/support - In return for receiving this top quality\r
44     embedded software for free we request you assist our global community by\r
45     participating in the support forum.\r
46 \r
47     http://www.FreeRTOS.org/training - Investing in training allows your team to\r
48     be as productive as possible as early as possible.  Now you can receive\r
49     FreeRTOS training directly from Richard Barry, CEO of Real Time Engineers\r
50     Ltd, and the world's leading authority on the world's leading RTOS.\r
51 \r
52     http://www.FreeRTOS.org/plus - A selection of FreeRTOS ecosystem products,\r
53     including FreeRTOS+Trace - an indispensable productivity tool, a DOS\r
54     compatible FAT file system, and our tiny thread aware UDP/IP stack.\r
55 \r
56     http://www.FreeRTOS.org/labs - Where new FreeRTOS products go to incubate.\r
57     Come and try FreeRTOS+TCP, our new open source TCP/IP stack for FreeRTOS.\r
58 \r
59     http://www.OpenRTOS.com - Real Time Engineers ltd. license FreeRTOS to High\r
60     Integrity Systems ltd. to sell under the OpenRTOS brand.  Low cost OpenRTOS\r
61     licenses offer ticketed support, indemnification and commercial middleware.\r
62 \r
63     http://www.SafeRTOS.com - High Integrity Systems also provide a safety\r
64     engineered and independently SIL3 certified version for use in safety and\r
65     mission critical applications that require provable dependability.\r
66 \r
67     1 tab == 4 spaces!\r
68 */\r
69 \r
70 /**\r
71  * Create a single persistent task which periodically dynamically creates another\r
72  * two tasks.  The original task is called the creator task, the two tasks it\r
73  * creates are called suicidal tasks.\r
74  *\r
75  * One of the created suicidal tasks kill one other suicidal task before killing\r
76  * itself - leaving just the original task remaining.\r
77  *\r
78  * The creator task must be spawned after all of the other demo application tasks\r
79  * as it keeps a check on the number of tasks under the scheduler control.  The\r
80  * number of tasks it expects to see running should never be greater than the\r
81  * number of tasks that were in existence when the creator task was spawned, plus\r
82  * one set of four suicidal tasks.  If this number is exceeded an error is flagged.\r
83  *\r
84  * \page DeathC death.c\r
85  * \ingroup DemoFiles\r
86  * <HR>\r
87  */\r
88 \r
89 \r
90 #include <stdlib.h>\r
91 \r
92 /* Scheduler include files. */\r
93 #include "FreeRTOS.h"\r
94 #include "task.h"\r
95 \r
96 /* Demo program include files. */\r
97 #include "death.h"\r
98 \r
99 #define deathSTACK_SIZE         ( configMINIMAL_STACK_SIZE + 60 )\r
100 \r
101 /* The task originally created which is responsible for periodically dynamically\r
102 creating another four tasks. */\r
103 static portTASK_FUNCTION_PROTO( vCreateTasks, pvParameters );\r
104 \r
105 /* The task function of the dynamically created tasks. */\r
106 static portTASK_FUNCTION_PROTO( vSuicidalTask, pvParameters );\r
107 \r
108 /* A variable which is incremented every time the dynamic tasks are created.  This\r
109 is used to check that the task is still running. */\r
110 static volatile uint16_t usCreationCount = 0;\r
111 \r
112 /* Used to store the number of tasks that were originally running so the creator\r
113 task can tell if any of the suicidal tasks have failed to die.\r
114 */\r
115 static volatile UBaseType_t uxTasksRunningAtStart = 0;\r
116 \r
117 /* Tasks are deleted by the idle task.  Under heavy load the idle task might\r
118 not get much processing time, so it would be legitimate for several tasks to\r
119 remain undeleted for a short period. */\r
120 static const UBaseType_t uxMaxNumberOfExtraTasksRunning = 3;\r
121 \r
122 /* Used to store a handle to the task that should be killed by a suicidal task,\r
123 before it kills itself. */\r
124 TaskHandle_t xCreatedTask;\r
125 \r
126 /*-----------------------------------------------------------*/\r
127 \r
128 void vCreateSuicidalTasks( UBaseType_t uxPriority )\r
129 {\r
130 UBaseType_t *puxPriority;\r
131 \r
132         /* Create the Creator tasks - passing in as a parameter the priority at which\r
133         the suicidal tasks should be created. */\r
134         puxPriority = ( UBaseType_t * ) pvPortMalloc( sizeof( UBaseType_t ) );\r
135         *puxPriority = uxPriority;\r
136 \r
137         xTaskCreate( vCreateTasks, "CREATOR", deathSTACK_SIZE, ( void * ) puxPriority, uxPriority, NULL );\r
138 \r
139         /* Record the number of tasks that are running now so we know if any of the\r
140         suicidal tasks have failed to be killed. */\r
141         uxTasksRunningAtStart = ( UBaseType_t ) uxTaskGetNumberOfTasks();\r
142         \r
143         /* FreeRTOS.org versions before V3.0 started the idle-task as the very\r
144         first task. The idle task was then already included in uxTasksRunningAtStart.\r
145         From FreeRTOS V3.0 on, the idle task is started when the scheduler is\r
146         started. Therefore the idle task is not yet accounted for. We correct\r
147         this by increasing uxTasksRunningAtStart by 1. */\r
148         uxTasksRunningAtStart++;\r
149         \r
150         /* From FreeRTOS version 7.0.0 can optionally create a timer service task.  \r
151         If this is done, then uxTasksRunningAtStart needs incrementing again as that\r
152         too is created when the scheduler is started. */\r
153         #if configUSE_TIMERS == 1\r
154                 uxTasksRunningAtStart++;\r
155         #endif\r
156 }\r
157 /*-----------------------------------------------------------*/\r
158                                         \r
159 static portTASK_FUNCTION( vSuicidalTask, pvParameters )\r
160 {\r
161 volatile long l1, l2;\r
162 TaskHandle_t xTaskToKill;\r
163 const TickType_t xDelay = ( TickType_t ) 200 / portTICK_PERIOD_MS;\r
164 \r
165         if( pvParameters != NULL )\r
166         {\r
167                 /* This task is periodically created four times.  Two created tasks are\r
168                 passed a handle to the other task so it can kill it before killing itself.\r
169                 The other task is passed in null. */\r
170                 xTaskToKill = *( TaskHandle_t* )pvParameters;\r
171         }\r
172         else\r
173         {\r
174                 xTaskToKill = NULL;\r
175         }\r
176 \r
177         for( ;; )\r
178         {\r
179                 /* Do something random just to use some stack and registers. */\r
180                 l1 = 2;\r
181                 l2 = 89;\r
182                 l2 *= l1;\r
183                 vTaskDelay( xDelay );\r
184 \r
185                 if( xTaskToKill != NULL )\r
186                 {\r
187                         /* Make sure the other task has a go before we delete it. */\r
188                         vTaskDelay( ( TickType_t ) 0 );\r
189 \r
190                         /* Kill the other task that was created by vCreateTasks(). */\r
191                         vTaskDelete( xTaskToKill );\r
192 \r
193                         /* Kill ourselves. */\r
194                         vTaskDelete( NULL );\r
195                 }\r
196         }\r
197 }/*lint !e818 !e550 Function prototype must be as per standard for task functions. */\r
198 /*-----------------------------------------------------------*/\r
199 \r
200 static portTASK_FUNCTION( vCreateTasks, pvParameters )\r
201 {\r
202 const TickType_t xDelay = ( TickType_t ) 1000 / portTICK_PERIOD_MS;\r
203 UBaseType_t uxPriority;\r
204 \r
205         uxPriority = *( UBaseType_t * ) pvParameters;\r
206         vPortFree( pvParameters );\r
207 \r
208         for( ;; )\r
209         {\r
210                 /* Just loop round, delaying then creating the four suicidal tasks. */\r
211                 vTaskDelay( xDelay );\r
212 \r
213                 xCreatedTask = NULL;\r
214 \r
215                 xTaskCreate( vSuicidalTask, "SUICID1", configMINIMAL_STACK_SIZE, NULL, uxPriority, &xCreatedTask );\r
216                 xTaskCreate( vSuicidalTask, "SUICID2", configMINIMAL_STACK_SIZE, &xCreatedTask, uxPriority, NULL );\r
217 \r
218                 ++usCreationCount;\r
219         }\r
220 }\r
221 /*-----------------------------------------------------------*/\r
222 \r
223 /* This is called to check that the creator task is still running and that there\r
224 are not any more than four extra tasks. */\r
225 BaseType_t xIsCreateTaskStillRunning( void )\r
226 {\r
227 static uint16_t usLastCreationCount = 0xfff;\r
228 BaseType_t xReturn = pdTRUE;\r
229 static UBaseType_t uxTasksRunningNow;\r
230 \r
231         if( usLastCreationCount == usCreationCount )\r
232         {\r
233                 xReturn = pdFALSE;\r
234         }\r
235         else\r
236         {\r
237                 usLastCreationCount = usCreationCount;\r
238         }\r
239         \r
240         uxTasksRunningNow = ( UBaseType_t ) uxTaskGetNumberOfTasks();\r
241 \r
242         if( uxTasksRunningNow < uxTasksRunningAtStart )\r
243         {\r
244                 xReturn = pdFALSE;\r
245         }\r
246         else if( ( uxTasksRunningNow - uxTasksRunningAtStart ) > uxMaxNumberOfExtraTasksRunning )\r
247         {\r
248                 xReturn = pdFALSE;\r
249         }\r
250         else\r
251         {\r
252                 /* Everything is okay. */\r
253         }\r
254 \r
255         return xReturn;\r
256 }\r
257 \r
258 \r