]> git.sur5r.net Git - freertos/blob - FreeRTOS/Demo/WIN32-MSVC/DemosModifiedForLowTickRate/recmutex.c
Update FreeRTOS version number to V7.5.3
[freertos] / FreeRTOS / Demo / WIN32-MSVC / DemosModifiedForLowTickRate / recmutex.c
1 /*\r
2     FreeRTOS V7.5.3 - Copyright (C) 2013 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     ***************************************************************************\r
8      *                                                                       *\r
9      *    FreeRTOS provides completely free yet professionally developed,    *\r
10      *    robust, strictly quality controlled, supported, and cross          *\r
11      *    platform software that has become a de facto standard.             *\r
12      *                                                                       *\r
13      *    Help yourself get started quickly and support the FreeRTOS         *\r
14      *    project by purchasing a FreeRTOS tutorial book, reference          *\r
15      *    manual, or both from: http://www.FreeRTOS.org/Documentation        *\r
16      *                                                                       *\r
17      *    Thank you!                                                         *\r
18      *                                                                       *\r
19     ***************************************************************************\r
20 \r
21     This file is part of the FreeRTOS distribution.\r
22 \r
23     FreeRTOS is free software; you can redistribute it and/or modify it under\r
24     the terms of the GNU General Public License (version 2) as published by the\r
25     Free Software Foundation >>!AND MODIFIED BY!<< the FreeRTOS exception.\r
26 \r
27     >>! NOTE: The modification to the GPL is included to allow you to distribute\r
28     >>! a combined work that includes FreeRTOS without being obliged to provide\r
29     >>! the source code for proprietary components outside of the FreeRTOS\r
30     >>! kernel.\r
31 \r
32     FreeRTOS is distributed in the hope that it will be useful, but WITHOUT ANY\r
33     WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS\r
34     FOR A PARTICULAR PURPOSE.  Full license text is available from the following\r
35     link: http://www.freertos.org/a00114.html\r
36 \r
37     1 tab == 4 spaces!\r
38 \r
39     ***************************************************************************\r
40      *                                                                       *\r
41      *    Having a problem?  Start by reading the FAQ "My application does   *\r
42      *    not run, what could be wrong?"                                     *\r
43      *                                                                       *\r
44      *    http://www.FreeRTOS.org/FAQHelp.html                               *\r
45      *                                                                       *\r
46     ***************************************************************************\r
47 \r
48     http://www.FreeRTOS.org - Documentation, books, training, latest versions,\r
49     license and Real Time Engineers Ltd. contact details.\r
50 \r
51     http://www.FreeRTOS.org/plus - A selection of FreeRTOS ecosystem products,\r
52     including FreeRTOS+Trace - an indispensable productivity tool, a DOS\r
53     compatible FAT file system, and our tiny thread aware UDP/IP stack.\r
54 \r
55     http://www.OpenRTOS.com - Real Time Engineers ltd license FreeRTOS to High\r
56     Integrity Systems to sell under the OpenRTOS brand.  Low cost OpenRTOS\r
57     licenses offer ticketed support, indemnification and middleware.\r
58 \r
59     http://www.SafeRTOS.com - High Integrity Systems also provide a safety\r
60     engineered and independently SIL3 certified version for use in safety and\r
61     mission critical applications that require provable dependability.\r
62 \r
63     1 tab == 4 spaces!\r
64 */\r
65 \r
66 /*\r
67         The tasks defined on this page demonstrate the use of recursive mutexes.\r
68 \r
69         For recursive mutex functionality the created mutex should be created using\r
70         xSemaphoreCreateRecursiveMutex(), then be manipulated\r
71         using the xSemaphoreTakeRecursive() and xSemaphoreGiveRecursive() API\r
72         functions.\r
73 \r
74         This demo creates three tasks all of which access the same recursive mutex:\r
75 \r
76         prvRecursiveMutexControllingTask() has the highest priority so executes \r
77         first and grabs the mutex.  It then performs some recursive accesses - \r
78         between each of which it sleeps for a short period to let the lower \r
79         priority tasks execute.  When it has completed its demo functionality\r
80         it gives the mutex back before suspending itself.\r
81 \r
82         prvRecursiveMutexBlockingTask() attempts to access the mutex by performing\r
83         a blocking 'take'.  The blocking task has a lower priority than the \r
84         controlling     task so by the time it executes the mutex has already been\r
85         taken by the controlling task,  causing the blocking task to block.  It \r
86         does not unblock until the controlling task has given the mutex back, \r
87         and it does not actually run until the controlling task has suspended \r
88         itself (due to the relative priorities).  When it eventually does obtain\r
89         the mutex all it does is give the mutex back prior to also suspending \r
90         itself.  At this point both the controlling task and the blocking task are \r
91         suspended.\r
92 \r
93         prvRecursiveMutexPollingTask() runs at the idle priority.  It spins round\r
94         a tight loop attempting to obtain the mutex with a non-blocking call.  As\r
95         the lowest priority task it will not successfully obtain the mutex until\r
96         both the controlling and blocking tasks are suspended.  Once it eventually \r
97         does obtain the mutex it first unsuspends both the controlling task and\r
98         blocking task prior to giving the mutex back - resulting in the polling\r
99         task temporarily inheriting the controlling tasks priority.\r
100 */\r
101 \r
102 /* Scheduler include files. */\r
103 #include "FreeRTOS.h"\r
104 #include "task.h"\r
105 #include "semphr.h"\r
106 \r
107 /* Demo app include files. */\r
108 #include "recmutex.h"\r
109 \r
110 /* Priorities assigned to the three tasks. */\r
111 #define recmuCONTROLLING_TASK_PRIORITY  ( tskIDLE_PRIORITY + 2 )\r
112 #define recmuBLOCKING_TASK_PRIORITY             ( tskIDLE_PRIORITY + 1 )\r
113 #define recmuPOLLING_TASK_PRIORITY              ( tskIDLE_PRIORITY + 0 )\r
114 \r
115 /* In this version the tick period is very long, so the short delay cannot be\r
116 for too many ticks, or the check task will execute and find that the recmutex\r
117 tasks have not completed their functionality and then signal an error.  The\r
118 delay does however have to be long enough to allow the lower priority tasks\r
119 a chance of executing - this is basically achieved by reducing the number\r
120 of times the loop that takes/gives the recursive mutex executes. */\r
121 #define recmuMAX_COUNT                                  ( 2 )\r
122 #define recmuSHORT_DELAY                                ( 20 )\r
123 #define recmuNO_DELAY                                   ( ( portTickType ) 0 )\r
124 #define recmuFIVE_TICK_DELAY                    ( ( portTickType ) 5 )\r
125 \r
126 /* The three tasks as described at the top of this file. */\r
127 static void prvRecursiveMutexControllingTask( void *pvParameters );\r
128 static void prvRecursiveMutexBlockingTask( void *pvParameters );\r
129 static void prvRecursiveMutexPollingTask( void *pvParameters );\r
130 \r
131 /* The mutex used by the demo. */\r
132 static xSemaphoreHandle xMutex;\r
133 \r
134 /* Variables used to detect and latch errors. */\r
135 static volatile portBASE_TYPE xErrorOccurred = pdFALSE, xControllingIsSuspended = pdFALSE, xBlockingIsSuspended = pdFALSE;\r
136 static volatile unsigned portBASE_TYPE uxControllingCycles = 0, uxBlockingCycles = 0, uxPollingCycles = 0;\r
137 \r
138 /* Handles of the two higher priority tasks, required so they can be resumed \r
139 (unsuspended). */\r
140 static xTaskHandle xControllingTaskHandle, xBlockingTaskHandle;\r
141 \r
142 /*-----------------------------------------------------------*/\r
143 \r
144 void vStartRecursiveMutexTasks( void )\r
145 {\r
146         /* Just creates the mutex and the three tasks. */\r
147 \r
148         xMutex = xSemaphoreCreateRecursiveMutex();\r
149 \r
150         /* vQueueAddToRegistry() adds the mutex to the registry, if one is\r
151         in use.  The registry is provided as a means for kernel aware \r
152         debuggers to locate mutex and has no purpose if a kernel aware debugger\r
153         is not being used.  The call to vQueueAddToRegistry() will be removed\r
154         by the pre-processor if configQUEUE_REGISTRY_SIZE is not defined or is \r
155         defined to be less than 1. */\r
156         vQueueAddToRegistry( ( xQueueHandle ) xMutex, ( signed portCHAR * ) "Recursive_Mutex" );\r
157 \r
158 \r
159         if( xMutex != NULL )\r
160         {\r
161                 xTaskCreate( prvRecursiveMutexControllingTask, ( signed portCHAR * ) "Rec1Ctrl", configMINIMAL_STACK_SIZE, NULL, recmuCONTROLLING_TASK_PRIORITY, &xControllingTaskHandle );\r
162         xTaskCreate( prvRecursiveMutexBlockingTask, ( signed portCHAR * ) "Rec2Blck", configMINIMAL_STACK_SIZE, NULL, recmuBLOCKING_TASK_PRIORITY, &xBlockingTaskHandle );\r
163         xTaskCreate( prvRecursiveMutexPollingTask, ( signed portCHAR * ) "Rec3Poll", configMINIMAL_STACK_SIZE, NULL, recmuPOLLING_TASK_PRIORITY, NULL );\r
164         }\r
165 }\r
166 /*-----------------------------------------------------------*/\r
167 \r
168 static void prvRecursiveMutexControllingTask( void *pvParameters )\r
169 {\r
170 unsigned portBASE_TYPE ux;\r
171 \r
172         /* Just to remove compiler warning. */\r
173         ( void ) pvParameters;\r
174 \r
175         for( ;; )\r
176         {\r
177                 /* Should not be able to 'give' the mutex, as we have not yet 'taken'\r
178                 it.   The first time through, the mutex will not have been used yet,\r
179                 subsequent times through, at this point the mutex will be held by the\r
180                 polling task. */\r
181                 if( xSemaphoreGiveRecursive( xMutex ) == pdPASS )\r
182                 {\r
183                         xErrorOccurred = pdTRUE;\r
184                 }\r
185 \r
186                 for( ux = 0; ux < recmuMAX_COUNT; ux++ )\r
187                 {\r
188                         /* We should now be able to take the mutex as many times as\r
189                         we like.\r
190                         \r
191                         The first time through the mutex will be immediately available, on\r
192                         subsequent times through the mutex will be held by the polling task\r
193                         at this point and this Take will cause the polling task to inherit\r
194                         the priority of this task.  In this case the block time must be\r
195                         long enough to ensure the polling task will execute again before the\r
196                         block time expires.  If the block time does expire then the error\r
197                         flag will be set here. */\r
198                         if( xSemaphoreTakeRecursive( xMutex, recmuFIVE_TICK_DELAY ) != pdPASS )\r
199                         {\r
200                                 xErrorOccurred = pdTRUE;\r
201                         }\r
202 \r
203                         /* Ensure the other task attempting to access the mutex (and the\r
204                         other demo tasks) are able to execute to ensure they either block\r
205                         (where a block time is specified) or return an error (where no \r
206                         block time is specified) as the mutex is held by this task. */\r
207                         vTaskDelay( recmuSHORT_DELAY );\r
208                 }\r
209 \r
210                 /* For each time we took the mutex, give it back. */\r
211                 for( ux = 0; ux < recmuMAX_COUNT; ux++ )\r
212                 {\r
213                         /* Ensure the other task attempting to access the mutex (and the\r
214                         other demo tasks) are able to execute. */\r
215                         vTaskDelay( recmuSHORT_DELAY );\r
216 \r
217                         /* We should now be able to give the mutex as many times as we\r
218                         took it.  When the mutex is available again the Blocking task\r
219                         should be unblocked but not run because it has a lower priority\r
220                         than this task.  The polling task should also not run at this point\r
221                         as it too has a lower priority than this task. */\r
222                         if( xSemaphoreGiveRecursive( xMutex ) != pdPASS )\r
223                         {\r
224                                 xErrorOccurred = pdTRUE;\r
225                         }\r
226                 }\r
227 \r
228                 /* Having given it back the same number of times as it was taken, we\r
229                 should no longer be the mutex owner, so the next give should fail. */\r
230                 if( xSemaphoreGiveRecursive( xMutex ) == pdPASS )\r
231                 {\r
232                         xErrorOccurred = pdTRUE;\r
233                 }\r
234 \r
235                 /* Keep count of the number of cycles this task has performed so a \r
236                 stall can be detected. */\r
237                 uxControllingCycles++;\r
238 \r
239                 /* Suspend ourselves so the blocking task can execute. */\r
240                 xControllingIsSuspended = pdTRUE;\r
241                 vTaskSuspend( NULL );\r
242                 xControllingIsSuspended = pdFALSE;\r
243         }\r
244 }\r
245 /*-----------------------------------------------------------*/\r
246 \r
247 static void prvRecursiveMutexBlockingTask( void *pvParameters )\r
248 {\r
249         /* Just to remove compiler warning. */\r
250         ( void ) pvParameters;\r
251 \r
252         for( ;; )\r
253         {\r
254                 /* This task will run while the controlling task is blocked, and the\r
255                 controlling task will block only once it has the mutex - therefore\r
256                 this call should block until the controlling task has given up the \r
257                 mutex, and not actually execute past this call until the controlling \r
258                 task is suspended. */\r
259                 if( xSemaphoreTakeRecursive( xMutex, portMAX_DELAY ) == pdPASS )\r
260                 {\r
261                         if( xControllingIsSuspended != pdTRUE )\r
262                         {\r
263                                 /* Did not expect to execute until the controlling task was\r
264                                 suspended. */\r
265                                 xErrorOccurred = pdTRUE;\r
266                         }\r
267                         else\r
268                         {\r
269                                 /* Give the mutex back before suspending ourselves to allow\r
270                                 the polling task to obtain the mutex. */\r
271                                 if( xSemaphoreGiveRecursive( xMutex ) != pdPASS )\r
272                                 {\r
273                                         xErrorOccurred = pdTRUE;\r
274                                 }\r
275 \r
276                                 xBlockingIsSuspended = pdTRUE;\r
277                                 vTaskSuspend( NULL );\r
278                                 xBlockingIsSuspended = pdFALSE;\r
279                         }\r
280                 }\r
281                 else\r
282                 {\r
283                         /* We should not leave the xSemaphoreTakeRecursive() function\r
284                         until the mutex was obtained. */\r
285                         xErrorOccurred = pdTRUE;\r
286                 }\r
287 \r
288                 /* The controlling and blocking tasks should be in lock step. */\r
289                 if( uxControllingCycles != ( uxBlockingCycles + 1 ) )\r
290                 {\r
291                         xErrorOccurred = pdTRUE;\r
292                 }\r
293 \r
294                 /* Keep count of the number of cycles this task has performed so a \r
295                 stall can be detected. */\r
296                 uxBlockingCycles++;\r
297         }\r
298 }\r
299 /*-----------------------------------------------------------*/\r
300 \r
301 static void prvRecursiveMutexPollingTask( void *pvParameters )\r
302 {\r
303         /* Just to remove compiler warning. */\r
304         ( void ) pvParameters;\r
305 \r
306         for( ;; )\r
307         {\r
308                 /* Keep attempting to obtain the mutex.  We should only obtain it when\r
309                 the blocking task has suspended itself, which in turn should only\r
310                 happen when the controlling task is also suspended. */\r
311                 if( xSemaphoreTakeRecursive( xMutex, recmuNO_DELAY ) == pdPASS )\r
312                 {\r
313                         /* Is the blocking task suspended? */\r
314                         if( ( xBlockingIsSuspended != pdTRUE ) || ( xControllingIsSuspended != pdTRUE ) )\r
315                         {\r
316                                 xErrorOccurred = pdTRUE;\r
317                         }\r
318                         else\r
319                         {\r
320                                 /* Keep count of the number of cycles this task has performed \r
321                                 so a stall can be detected. */\r
322                                 uxPollingCycles++;\r
323 \r
324                                 /* We can resume the other tasks here even though they have a\r
325                                 higher priority than the polling task.  When they execute they\r
326                                 will attempt to obtain the mutex but fail because the polling\r
327                                 task is still the mutex holder.  The polling task (this task)\r
328                                 will then inherit the higher priority.  The Blocking task will\r
329                                 block indefinitely when it attempts to obtain the mutex, the\r
330                                 Controlling task will only block for a fixed period and an\r
331                                 error will be latched if the polling task has not returned the\r
332                                 mutex by the time this fixed period has expired. */\r
333                                 vTaskResume( xBlockingTaskHandle );\r
334                 vTaskResume( xControllingTaskHandle );\r
335                         \r
336                                 /* The other two tasks should now have executed and no longer\r
337                                 be suspended. */\r
338                                 if( ( xBlockingIsSuspended == pdTRUE ) || ( xControllingIsSuspended == pdTRUE ) )\r
339                                 {\r
340                                         xErrorOccurred = pdTRUE;\r
341                                 }                               \r
342                         \r
343                                 /* Release the mutex, disinheriting the higher priority again. */\r
344                                 if( xSemaphoreGiveRecursive( xMutex ) != pdPASS )\r
345                                 {\r
346                                         xErrorOccurred = pdTRUE;\r
347                                 }\r
348                         }\r
349                 }\r
350 \r
351                 #if configUSE_PREEMPTION == 0\r
352                 {\r
353                         taskYIELD();\r
354                 }\r
355                 #endif\r
356         }\r
357 }\r
358 /*-----------------------------------------------------------*/\r
359 \r
360 /* This is called to check that all the created tasks are still running. */\r
361 portBASE_TYPE xAreRecursiveMutexTasksStillRunning( void )\r
362 {\r
363 portBASE_TYPE xReturn;\r
364 static unsigned portBASE_TYPE uxLastControllingCycles = 0, uxLastBlockingCycles = 0, uxLastPollingCycles = 0;\r
365 \r
366         /* Is the controlling task still cycling? */\r
367         if( uxLastControllingCycles == uxControllingCycles )\r
368         {\r
369                 xErrorOccurred = pdTRUE;\r
370         }\r
371         else\r
372         {\r
373                 uxLastControllingCycles = uxControllingCycles;\r
374         }\r
375 \r
376         /* Is the blocking task still cycling? */\r
377         if( uxLastBlockingCycles == uxBlockingCycles )\r
378         {\r
379                 xErrorOccurred = pdTRUE;\r
380         }\r
381         else\r
382         {\r
383                 uxLastBlockingCycles = uxBlockingCycles;\r
384         }\r
385 \r
386         /* Is the polling task still cycling? */\r
387         if( uxLastPollingCycles == uxPollingCycles )\r
388         {\r
389                 xErrorOccurred = pdTRUE;\r
390         }\r
391         else\r
392         {\r
393                 uxLastPollingCycles = uxPollingCycles;\r
394         }\r
395 \r
396         if( xErrorOccurred == pdTRUE )\r
397         {\r
398                 xReturn = pdFAIL;\r
399         }\r
400         else\r
401         {\r
402                 xReturn = pdTRUE;\r
403         }\r
404 \r
405         return xReturn;\r
406 }\r
407 \r
408 \r
409 \r
410 \r