]> git.sur5r.net Git - freertos/commitdiff
Corrected the bug that the comments in the file state was corrected in V4.0.3.
authorrichardbarry <richardbarry@1d2547de-c912-0410-9cb9-b8ca96c0e9e2>
Fri, 20 Oct 2006 15:36:22 +0000 (15:36 +0000)
committerrichardbarry <richardbarry@1d2547de-c912-0410-9cb9-b8ca96c0e9e2>
Fri, 20 Oct 2006 15:36:22 +0000 (15:36 +0000)
git-svn-id: https://svn.code.sf.net/p/freertos/code/trunk@46 1d2547de-c912-0410-9cb9-b8ca96c0e9e2

Demo/Common/Minimal/BlockQ.c

index d88d9692b26cad61b2c517af6d1177c7d643ebfc..ae6ca0b25b9cf53bd922f6ba16132c8a59eccf72 100644 (file)
@@ -56,7 +56,7 @@
 \r
 /* \r
 \r
-Changes from V4.0.2\r
+Changes from V4.1.1\r
 \r
        + The second set of tasks were created the wrong way around.  This has been\r
          corrected.\r
@@ -162,8 +162,8 @@ const portTickType xDontBlock = ( portTickType ) 0;
        pxQueueParameters4->xBlockTime = xBlockTime;\r
        pxQueueParameters4->psCheckVariable = &( sBlockingConsumerCount[ 1 ] );\r
 \r
-       xTaskCreate( vBlockingQueueProducer, ( signed portCHAR * ) "QProdB3", blckqSTACK_SIZE, ( void * ) pxQueueParameters3, tskIDLE_PRIORITY, NULL );\r
-       xTaskCreate( vBlockingQueueConsumer, ( signed portCHAR * ) "QConsB4", blckqSTACK_SIZE, ( void * ) pxQueueParameters4, uxPriority, NULL );\r
+       xTaskCreate( vBlockingQueueConsumer, ( signed portCHAR * ) "QProdB3", blckqSTACK_SIZE, ( void * ) pxQueueParameters3, tskIDLE_PRIORITY, NULL );\r
+       xTaskCreate( vBlockingQueueProducer, ( signed portCHAR * ) "QConsB4", blckqSTACK_SIZE, ( void * ) pxQueueParameters4, uxPriority, NULL );\r
 \r
 \r
 \r