]> git.sur5r.net Git - freertos/blobdiff - FreeRTOS/Demo/Common/Minimal/semtest.c
Update version number to 9.0.0rc2.
[freertos] / FreeRTOS / Demo / Common / Minimal / semtest.c
index 37d0f9a6bce2ef61786e9e716852c86d253ba027..4ff98dd384ab1547169788ce80a11bbf2632772d 100644 (file)
@@ -1,5 +1,5 @@
 /*\r
-    FreeRTOS V8.2.0rc1 - Copyright (C) 2014 Real Time Engineers Ltd.\r
+    FreeRTOS V9.0.0rc2 - Copyright (C) 2016 Real Time Engineers Ltd.\r
     All rights reserved\r
 \r
     VISIT http://www.FreeRTOS.org TO ENSURE YOU ARE USING THE LATEST VERSION.\r
@@ -8,29 +8,20 @@
 \r
     FreeRTOS is free software; you can redistribute it and/or modify it under\r
     the terms of the GNU General Public License (version 2) as published by the\r
-    Free Software Foundation >>!AND MODIFIED BY!<< the FreeRTOS exception.\r
+    Free Software Foundation >>>> AND MODIFIED BY <<<< the FreeRTOS exception.\r
 \r
+    ***************************************************************************\r
     >>!   NOTE: The modification to the GPL is included to allow you to     !<<\r
     >>!   distribute a combined work that includes FreeRTOS without being   !<<\r
     >>!   obliged to provide the source code for proprietary components     !<<\r
     >>!   outside of the FreeRTOS kernel.                                   !<<\r
+    ***************************************************************************\r
 \r
     FreeRTOS is distributed in the hope that it will be useful, but WITHOUT ANY\r
     WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS\r
     FOR A PARTICULAR PURPOSE.  Full license text is available on the following\r
     link: http://www.freertos.org/a00114.html\r
 \r
-    1 tab == 4 spaces!\r
-\r
-    ***************************************************************************\r
-     *                                                                       *\r
-     *    Having a problem?  Start by reading the FAQ "My application does   *\r
-     *    not run, what could be wrong?".  Have you defined configASSERT()?  *\r
-     *                                                                       *\r
-     *    http://www.FreeRTOS.org/FAQHelp.html                               *\r
-     *                                                                       *\r
-    ***************************************************************************\r
-\r
     ***************************************************************************\r
      *                                                                       *\r
      *    FreeRTOS provides completely free yet professionally developed,    *\r
      *                                                                       *\r
     ***************************************************************************\r
 \r
-    ***************************************************************************\r
-     *                                                                       *\r
-     *   Investing in training allows your team to be as productive as       *\r
-     *   possible as early as possible, lowering your overall development    *\r
-     *   cost, and enabling you to bring a more robust product to market     *\r
-     *   earlier than would otherwise be possible.  Richard Barry is both    *\r
-     *   the architect and key author of FreeRTOS, and so also the world's   *\r
-     *   leading authority on what is the world's most popular real time     *\r
-     *   kernel for deeply embedded MCU designs.  Obtaining your training    *\r
-     *   from Richard ensures your team will gain directly from his in-depth *\r
-     *   product knowledge and years of usage experience.  Contact Real Time *\r
-     *   Engineers Ltd to enquire about the FreeRTOS Masterclass, presented  *\r
-     *   by Richard Barry:  http://www.FreeRTOS.org/contact\r
-     *                                                                       *\r
-    ***************************************************************************\r
+    http://www.FreeRTOS.org/FAQHelp.html - Having a problem?  Start by reading\r
+    the FAQ page "My application does not run, what could be wrong?".  Have you\r
+    defined configASSERT()?\r
 \r
-    ***************************************************************************\r
-     *                                                                       *\r
-     *    You are receiving this top quality software for free.  Please play *\r
-     *    fair and reciprocate by reporting any suspected issues and         *\r
-     *    participating in the community forum:                              *\r
-     *    http://www.FreeRTOS.org/support                                    *\r
-     *                                                                       *\r
-     *    Thank you!                                                         *\r
-     *                                                                       *\r
-    ***************************************************************************\r
+    http://www.FreeRTOS.org/support - In return for receiving this top quality\r
+    embedded software for free we request you assist our global community by\r
+    participating in the support forum.\r
 \r
-    http://www.FreeRTOS.org - Documentation, books, training, latest versions,\r
-    license and Real Time Engineers Ltd. contact details.\r
+    http://www.FreeRTOS.org/training - Investing in training allows your team to\r
+    be as productive as possible as early as possible.  Now you can receive\r
+    FreeRTOS training directly from Richard Barry, CEO of Real Time Engineers\r
+    Ltd, and the world's leading authority on the world's leading RTOS.\r
 \r
     http://www.FreeRTOS.org/plus - A selection of FreeRTOS ecosystem products,\r
     including FreeRTOS+Trace - an indispensable productivity tool, a DOS\r
@@ -82,7 +56,7 @@
     http://www.FreeRTOS.org/labs - Where new FreeRTOS products go to incubate.\r
     Come and try FreeRTOS+TCP, our new open source TCP/IP stack for FreeRTOS.\r
 \r
-    http://www.OpenRTOS.com - Real Time Engineers ltd license FreeRTOS to High\r
+    http://www.OpenRTOS.com - Real Time Engineers ltd. license FreeRTOS to High\r
     Integrity Systems ltd. to sell under the OpenRTOS brand.  Low cost OpenRTOS\r
     licenses offer ticketed support, indemnification and commercial middleware.\r
 \r
 */\r
 \r
 /*\r
- * Creates two sets of two tasks.  The tasks within a set share a variable, access \r
+ * Creates two sets of two tasks.  The tasks within a set share a variable, access\r
  * to which is guarded by a semaphore.\r
- * \r
- * Each task starts by attempting to obtain the semaphore.  On obtaining a \r
- * semaphore a task checks to ensure that the guarded variable has an expected \r
- * value.  It then clears the variable to zero before counting it back up to the \r
- * expected value in increments of 1.  After each increment the variable is checked \r
- * to ensure it contains the value to which it was just set. When the starting \r
- * value is again reached the task releases the semaphore giving the other task in \r
- * the set a chance to do exactly the same thing.  The starting value is high \r
+ *\r
+ * Each task starts by attempting to obtain the semaphore.  On obtaining a\r
+ * semaphore a task checks to ensure that the guarded variable has an expected\r
+ * value.  It then clears the variable to zero before counting it back up to the\r
+ * expected value in increments of 1.  After each increment the variable is checked\r
+ * to ensure it contains the value to which it was just set. When the starting\r
+ * value is again reached the task releases the semaphore giving the other task in\r
+ * the set a chance to do exactly the same thing.  The starting value is high\r
  * enough to ensure that a tick is likely to occur during the incrementing loop.\r
  *\r
- * An error is flagged if at any time during the process a shared variable is \r
- * found to have a value other than that expected.  Such an occurrence would \r
- * suggest an error in the mutual exclusion mechanism by which access to the \r
+ * An error is flagged if at any time during the process a shared variable is\r
+ * found to have a value other than that expected.  Such an occurrence would\r
+ * suggest an error in the mutual exclusion mechanism by which access to the\r
  * variable is restricted.\r
  *\r
- * The first set of two tasks poll their semaphore.  The second set use blocking \r
+ * The first set of two tasks poll their semaphore.  The second set use blocking\r
  * calls.\r
  *\r
  */\r
@@ -165,11 +139,12 @@ const TickType_t xBlockTime = ( TickType_t ) 100;
        if( pxFirstSemaphoreParameters != NULL )\r
        {\r
                /* Create the semaphore used by the first two tasks. */\r
-               pxFirstSemaphoreParameters->xSemaphore = xSemaphoreCreateBinary();\r
-               xSemaphoreGive( pxFirstSemaphoreParameters->xSemaphore );\r
+               pxFirstSemaphoreParameters->xSemaphore = xSemaphoreCreateBinary();              \r
 \r
                if( pxFirstSemaphoreParameters->xSemaphore != NULL )\r
                {\r
+                       xSemaphoreGive( pxFirstSemaphoreParameters->xSemaphore );\r
+                       \r
                        /* Create the variable which is to be shared by the first two tasks. */\r
                        pxFirstSemaphoreParameters->pulSharedVariable = ( uint32_t * ) pvPortMalloc( sizeof( uint32_t ) );\r
 \r
@@ -182,36 +157,44 @@ const TickType_t xBlockTime = ( TickType_t ) 100;
                        /* Spawn the first two tasks.  As they poll they operate at the idle priority. */\r
                        xTaskCreate( prvSemaphoreTest, "PolSEM1", semtstSTACK_SIZE, ( void * ) pxFirstSemaphoreParameters, tskIDLE_PRIORITY, ( TaskHandle_t * ) NULL );\r
                        xTaskCreate( prvSemaphoreTest, "PolSEM2", semtstSTACK_SIZE, ( void * ) pxFirstSemaphoreParameters, tskIDLE_PRIORITY, ( TaskHandle_t * ) NULL );\r
+\r
+                       /* vQueueAddToRegistry() adds the semaphore to the registry, if one\r
+                       is in use.  The registry is provided as a means for kernel aware\r
+                       debuggers to locate semaphores and has no purpose if a kernel aware\r
+                       debugger is not being used.  The call to vQueueAddToRegistry() will\r
+                       be removed by the pre-processor if configQUEUE_REGISTRY_SIZE is not\r
+                       defined or is defined to be less than 1. */\r
+                       vQueueAddToRegistry( ( QueueHandle_t ) pxFirstSemaphoreParameters->xSemaphore, "Counting_Sem_1" );\r
                }\r
        }\r
 \r
-       /* Do exactly the same to create the second set of tasks, only this time \r
+       /* Do exactly the same to create the second set of tasks, only this time\r
        provide a block time for the semaphore calls. */\r
        pxSecondSemaphoreParameters = ( xSemaphoreParameters * ) pvPortMalloc( sizeof( xSemaphoreParameters ) );\r
        if( pxSecondSemaphoreParameters != NULL )\r
        {\r
-               pxSecondSemaphoreParameters->xSemaphore = xSemaphoreCreateBinary();\r
-               xSemaphoreGive( pxSecondSemaphoreParameters->xSemaphore );\r
+               pxSecondSemaphoreParameters->xSemaphore = xSemaphoreCreateBinary();             \r
 \r
                if( pxSecondSemaphoreParameters->xSemaphore != NULL )\r
                {\r
+                       xSemaphoreGive( pxSecondSemaphoreParameters->xSemaphore );\r
+                       \r
                        pxSecondSemaphoreParameters->pulSharedVariable = ( uint32_t * ) pvPortMalloc( sizeof( uint32_t ) );\r
                        *( pxSecondSemaphoreParameters->pulSharedVariable ) = semtstBLOCKING_EXPECTED_VALUE;\r
                        pxSecondSemaphoreParameters->xBlockTime = xBlockTime / portTICK_PERIOD_MS;\r
 \r
                        xTaskCreate( prvSemaphoreTest, "BlkSEM1", semtstSTACK_SIZE, ( void * ) pxSecondSemaphoreParameters, uxPriority, ( TaskHandle_t * ) NULL );\r
                        xTaskCreate( prvSemaphoreTest, "BlkSEM2", semtstSTACK_SIZE, ( void * ) pxSecondSemaphoreParameters, uxPriority, ( TaskHandle_t * ) NULL );\r
+\r
+                       /* vQueueAddToRegistry() adds the semaphore to the registry, if one\r
+                       is in use.  The registry is provided as a means for kernel aware\r
+                       debuggers to locate semaphores and has no purpose if a kernel aware\r
+                       debugger is not being used.  The call to vQueueAddToRegistry() will\r
+                       be removed by the pre-processor if configQUEUE_REGISTRY_SIZE is not\r
+                       defined or is defined to be less than 1. */\r
+                       vQueueAddToRegistry( ( QueueHandle_t ) pxSecondSemaphoreParameters->xSemaphore, "Counting_Sem_2" );\r
                }\r
        }\r
-\r
-       /* vQueueAddToRegistry() adds the semaphore to the registry, if one is\r
-       in use.  The registry is provided as a means for kernel aware \r
-       debuggers to locate semaphores and has no purpose if a kernel aware debugger\r
-       is not being used.  The call to vQueueAddToRegistry() will be removed\r
-       by the pre-processor if configQUEUE_REGISTRY_SIZE is not defined or is \r
-       defined to be less than 1. */\r
-       vQueueAddToRegistry( ( QueueHandle_t ) pxFirstSemaphoreParameters->xSemaphore, "Counting_Sem_1" );\r
-       vQueueAddToRegistry( ( QueueHandle_t ) pxSecondSemaphoreParameters->xSemaphore, "Counting_Sem_2" );\r
 }\r
 /*-----------------------------------------------------------*/\r
 \r
@@ -222,14 +205,14 @@ volatile uint32_t *pulSharedVariable, ulExpectedValue;
 uint32_t ulCounter;\r
 short sError = pdFALSE, sCheckVariableToUse;\r
 \r
-       /* See which check variable to use.  sNextCheckVariable is not semaphore \r
+       /* See which check variable to use.  sNextCheckVariable is not semaphore\r
        protected! */\r
        portENTER_CRITICAL();\r
                sCheckVariableToUse = sNextCheckVariable;\r
                sNextCheckVariable++;\r
        portEXIT_CRITICAL();\r
 \r
-       /* A structure is passed in as the parameter.  This contains the shared \r
+       /* A structure is passed in as the parameter.  This contains the shared\r
        variable being guarded. */\r
        pxParameters = ( xSemaphoreParameters * ) pvParameters;\r
        pulSharedVariable = pxParameters->pulSharedVariable;\r
@@ -257,7 +240,7 @@ short sError = pdFALSE, sCheckVariableToUse;
                        {\r
                                sError = pdTRUE;\r
                        }\r
-                       \r
+\r
                        /* Clear the variable, then count it back up to the expected value\r
                        before releasing the semaphore.  Would expect a context switch or\r
                        two during this time. */\r