]> git.sur5r.net Git - freertos/commitdiff
Correct task names in BlockQ.c.
authorRichardBarry <RichardBarry@1d2547de-c912-0410-9cb9-b8ca96c0e9e2>
Fri, 26 Aug 2011 16:43:16 +0000 (16:43 +0000)
committerRichardBarry <RichardBarry@1d2547de-c912-0410-9cb9-b8ca96c0e9e2>
Fri, 26 Aug 2011 16:43:16 +0000 (16:43 +0000)
git-svn-id: https://svn.code.sf.net/p/freertos/code/trunk@1554 1d2547de-c912-0410-9cb9-b8ca96c0e9e2

Demo/Common/Minimal/BlockQ.c

index cc9e35c60dd5d82b95d07eb730ef71d7bcd0d453..3de15e4b453f20773e95a967e85cf827333911cb 100644 (file)
@@ -183,8 +183,8 @@ const portTickType xDontBlock = ( portTickType ) 0;
        pxQueueParameters4->xBlockTime = xBlockTime;\r
        pxQueueParameters4->psCheckVariable = &( sBlockingConsumerCount[ 1 ] );\r
 \r
-       xTaskCreate( vBlockingQueueConsumer, ( signed char * ) "QProdB3", blckqSTACK_SIZE, ( void * ) pxQueueParameters3, tskIDLE_PRIORITY, NULL );\r
-       xTaskCreate( vBlockingQueueProducer, ( signed char * ) "QConsB4", blckqSTACK_SIZE, ( void * ) pxQueueParameters4, uxPriority, NULL );\r
+       xTaskCreate( vBlockingQueueConsumer, ( signed char * ) "QConsB3", blckqSTACK_SIZE, ( void * ) pxQueueParameters3, tskIDLE_PRIORITY, NULL );\r
+       xTaskCreate( vBlockingQueueProducer, ( signed char * ) "QProdB4", blckqSTACK_SIZE, ( void * ) pxQueueParameters4, uxPriority, NULL );\r
 \r
 \r
 \r