summaryrefslogtreecommitdiff
path: root/nuttx
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2008-01-30 14:02:16 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2008-01-30 14:02:16 +0000
commit802ee953dd39863a9b296d8ffbfcc428f2d6fc4f (patch)
treec32983355703dc6be0f20ac3bb4213ed20dd49ad /nuttx
parente674da72e287079bed6af67b3ab1c47896e4c5e0 (diff)
downloadpx4-nuttx-802ee953dd39863a9b296d8ffbfcc428f2d6fc4f.tar.gz
px4-nuttx-802ee953dd39863a9b296d8ffbfcc428f2d6fc4f.tar.bz2
px4-nuttx-802ee953dd39863a9b296d8ffbfcc428f2d6fc4f.zip
Fix comments
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@590 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx')
-rw-r--r--nuttx/examples/ostest/mqueue.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/nuttx/examples/ostest/mqueue.c b/nuttx/examples/ostest/mqueue.c
index 44a5e103f..cbebfd804 100644
--- a/nuttx/examples/ostest/mqueue.c
+++ b/nuttx/examples/ostest/mqueue.c
@@ -182,10 +182,10 @@ static void *receiver_thread(void *arg)
/* Set the flags for the open of the queue.
* Make it a blocking open on the queue, meaning it will block if
- * this process tries to* send to the queue and the queue is full.
+ * this task tries to read from the queue when the queue is empty
*
* O_CREAT - the queue will get created if it does not already exist.
- * O_RDONLY - we are only planning to write to the queue.
+ * O_RDONLY - we are only planning to read from the queue.
*
* Open the queue, and create it if the sending process hasn't
* already created it.