]> git.sur5r.net Git - freertos/blob - FreeRTOS/Demo/Common/Minimal/death.c
Update version number in readiness for V10.3.0 release. Sync SVN with reviewed releas...
[freertos] / FreeRTOS / Demo / Common / Minimal / death.c
1 /*\r
2  * FreeRTOS Kernel V10.3.0\r
3  * Copyright (C) 2020 Amazon.com, Inc. or its affiliates.  All Rights Reserved.\r
4  *\r
5  * Permission is hereby granted, free of charge, to any person obtaining a copy of\r
6  * this software and associated documentation files (the "Software"), to deal in\r
7  * the Software without restriction, including without limitation the rights to\r
8  * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\r
9  * the Software, and to permit persons to whom the Software is furnished to do so,\r
10  * subject to the following conditions:\r
11  *\r
12  * The above copyright notice and this permission notice shall be included in all\r
13  * copies or substantial portions of the Software.\r
14  *\r
15  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r
16  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\r
17  * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\r
18  * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\r
19  * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\r
20  * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\r
21  *\r
22  * http://www.FreeRTOS.org\r
23  * http://aws.amazon.com/freertos\r
24  *\r
25  * 1 tab == 4 spaces!\r
26  */\r
27 \r
28 /**\r
29  * Create a single persistent task which periodically dynamically creates another\r
30  * two tasks.  The original task is called the creator task, the two tasks it\r
31  * creates are called suicidal tasks.\r
32  *\r
33  * One of the created suicidal tasks kill one other suicidal task before killing\r
34  * itself - leaving just the original task remaining.\r
35  *\r
36  * The creator task must be spawned after all of the other demo application tasks\r
37  * as it keeps a check on the number of tasks under the scheduler control.  The\r
38  * number of tasks it expects to see running should never be greater than the\r
39  * number of tasks that were in existence when the creator task was spawned, plus\r
40  * one set of four suicidal tasks.  If this number is exceeded an error is flagged.\r
41  *\r
42  * \page DeathC death.c\r
43  * \ingroup DemoFiles\r
44  * <HR>\r
45  */\r
46 \r
47 \r
48 #include <stdlib.h>\r
49 \r
50 /* Scheduler include files. */\r
51 #include "FreeRTOS.h"\r
52 #include "task.h"\r
53 \r
54 /* Demo program include files. */\r
55 #include "death.h"\r
56 \r
57 #define deathSTACK_SIZE         ( configMINIMAL_STACK_SIZE + 60 )\r
58 \r
59 /* The task originally created which is responsible for periodically dynamically\r
60 creating another four tasks. */\r
61 static portTASK_FUNCTION_PROTO( vCreateTasks, pvParameters );\r
62 \r
63 /* The task function of the dynamically created tasks. */\r
64 static portTASK_FUNCTION_PROTO( vSuicidalTask, pvParameters );\r
65 \r
66 /* A variable which is incremented every time the dynamic tasks are created.  This\r
67 is used to check that the task is still running. */\r
68 static volatile uint16_t usCreationCount = 0;\r
69 \r
70 /* Used to store the number of tasks that were originally running so the creator\r
71 task can tell if any of the suicidal tasks have failed to die.\r
72 */\r
73 static volatile UBaseType_t uxTasksRunningAtStart = 0;\r
74 \r
75 /* When a task deletes itself, it stack and TCB are cleaned up by the Idle task.\r
76 Under heavy load the idle task might not get much processing time, so it would\r
77 be legitimate for several tasks to remain undeleted for a short period.  There\r
78 may also be a few other unexpected tasks if, for example, the tasks that test\r
79 static allocation are also being used. */\r
80 static const UBaseType_t uxMaxNumberOfExtraTasksRunning = 3;\r
81 \r
82 /* Used to store a handle to the task that should be killed by a suicidal task,\r
83 before it kills itself. */\r
84 TaskHandle_t xCreatedTask;\r
85 \r
86 /*-----------------------------------------------------------*/\r
87 \r
88 void vCreateSuicidalTasks( UBaseType_t uxPriority )\r
89 {\r
90         xTaskCreate( vCreateTasks, "CREATOR", deathSTACK_SIZE, ( void * ) NULL, uxPriority, NULL );\r
91 }\r
92 /*-----------------------------------------------------------*/\r
93 \r
94 static portTASK_FUNCTION( vSuicidalTask, pvParameters )\r
95 {\r
96 volatile long l1, l2;\r
97 TaskHandle_t xTaskToKill;\r
98 const TickType_t xDelay = pdMS_TO_TICKS( ( TickType_t ) 200 );\r
99 \r
100         /* Test deletion of a task's secure context, if any. */\r
101         portALLOCATE_SECURE_CONTEXT( configMINIMAL_SECURE_STACK_SIZE );\r
102 \r
103         if( pvParameters != NULL )\r
104         {\r
105                 /* This task is periodically created four times.  Two created tasks are\r
106                 passed a handle to the other task so it can kill it before killing itself.\r
107                 The other task is passed in null. */\r
108                 xTaskToKill = *( TaskHandle_t* )pvParameters;\r
109         }\r
110         else\r
111         {\r
112                 xTaskToKill = NULL;\r
113         }\r
114 \r
115         for( ;; )\r
116         {\r
117                 /* Do something random just to use some stack and registers. */\r
118                 l1 = 2;\r
119                 l2 = 89;\r
120                 l2 *= l1;\r
121                 vTaskDelay( xDelay );\r
122 \r
123                 if( xTaskToKill != NULL )\r
124                 {\r
125                         /* Make sure the other task has a go before we delete it. */\r
126                         vTaskDelay( ( TickType_t ) 0 );\r
127 \r
128                         /* Kill the other task that was created by vCreateTasks(). */\r
129                         vTaskDelete( xTaskToKill );\r
130 \r
131                         /* Kill ourselves. */\r
132                         vTaskDelete( NULL );\r
133                 }\r
134         }\r
135 }/*lint !e818 !e550 Function prototype must be as per standard for task functions. */\r
136 /*-----------------------------------------------------------*/\r
137 \r
138 static portTASK_FUNCTION( vCreateTasks, pvParameters )\r
139 {\r
140 const TickType_t xDelay = pdMS_TO_TICKS( ( TickType_t ) 1000 );\r
141 UBaseType_t uxPriority;\r
142 \r
143         /* Remove compiler warning about unused parameter. */\r
144         ( void ) pvParameters;\r
145 \r
146         /* Delay at the start to ensure tasks created by other demos have been\r
147         created before storing the current number of tasks. */\r
148         vTaskDelay( xDelay );\r
149         uxTasksRunningAtStart = ( UBaseType_t ) uxTaskGetNumberOfTasks();\r
150 \r
151         uxPriority = uxTaskPriorityGet( NULL );\r
152 \r
153         for( ;; )\r
154         {\r
155                 /* Just loop round, delaying then creating the four suicidal tasks. */\r
156                 vTaskDelay( xDelay );\r
157 \r
158                 xCreatedTask = NULL;\r
159 \r
160                 xTaskCreate( vSuicidalTask, "SUICID1", configMINIMAL_STACK_SIZE, NULL, uxPriority, &xCreatedTask );\r
161                 xTaskCreate( vSuicidalTask, "SUICID2", configMINIMAL_STACK_SIZE, &xCreatedTask, uxPriority, NULL );\r
162 \r
163                 ++usCreationCount;\r
164         }\r
165 }\r
166 /*-----------------------------------------------------------*/\r
167 \r
168 /* This is called to check that the creator task is still running and that there\r
169 are not any more than four extra tasks. */\r
170 BaseType_t xIsCreateTaskStillRunning( void )\r
171 {\r
172 static uint16_t usLastCreationCount = 0xfff;\r
173 BaseType_t xReturn = pdTRUE;\r
174 static UBaseType_t uxTasksRunningNow;\r
175 \r
176         if( usLastCreationCount == usCreationCount )\r
177         {\r
178                 xReturn = pdFALSE;\r
179         }\r
180         else\r
181         {\r
182                 usLastCreationCount = usCreationCount;\r
183         }\r
184 \r
185         uxTasksRunningNow = ( UBaseType_t ) uxTaskGetNumberOfTasks();\r
186 \r
187         if( uxTasksRunningNow < uxTasksRunningAtStart )\r
188         {\r
189                 xReturn = pdFALSE;\r
190         }\r
191         else if( ( uxTasksRunningNow - uxTasksRunningAtStart ) > uxMaxNumberOfExtraTasksRunning )\r
192         {\r
193                 xReturn = pdFALSE;\r
194         }\r
195         else\r
196         {\r
197                 /* Everything is okay. */\r
198         }\r
199 \r
200         return xReturn;\r
201 }\r
202 \r
203 \r