summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrichardbarry <richardbarry@1d2547de-c912-0410-9cb9-b8ca96c0e9e2>2008-12-23 19:25:33 +0000
committerrichardbarry <richardbarry@1d2547de-c912-0410-9cb9-b8ca96c0e9e2>2008-12-23 19:25:33 +0000
commitc4f8a6b805262c23c6e2ad100a51020abc7d6757 (patch)
treecedd230f5c3c73e537e44cac3cbca36f4256801a
parent590925ee7f290514fd4f38ea583611f2aced7fce (diff)
downloadfreertos-c4f8a6b805262c23c6e2ad100a51020abc7d6757.tar.gz
freertos-c4f8a6b805262c23c6e2ad100a51020abc7d6757.tar.bz2
freertos-c4f8a6b805262c23c6e2ad100a51020abc7d6757.tar.xz
Corrected comment - thanks Ralf A.
git-svn-id: https://freertos.svn.sourceforge.net/svnroot/freertos/trunk@598 1d2547de-c912-0410-9cb9-b8ca96c0e9e2
-rw-r--r--Demo/Common/Minimal/blocktim.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Demo/Common/Minimal/blocktim.c b/Demo/Common/Minimal/blocktim.c
index d3ab59da..363c8f55 100644
--- a/Demo/Common/Minimal/blocktim.c
+++ b/Demo/Common/Minimal/blocktim.c
@@ -393,8 +393,8 @@ portBASE_TYPE xData;
wake time is as per that expected. */
xTimeWhenBlocking = xTaskGetTickCount();
- /* We should unblock after bktTIME_TO_BLOCK having not received
- anything on the queue. */
+ /* We should unblock after bktTIME_TO_BLOCK having not sent
+ anything to the queue. */
xData = 0;
xRunIndicator = bktRUN_INDICATOR;
if( xQueueSend( xTestQueue, &xData, bktTIME_TO_BLOCK ) != errQUEUE_FULL )