Skip to content
Snippets Groups Projects
Commit c773c4e1 authored by patacongo's avatar patacongo
Browse files

Fix comments

git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@590 42af7a65-404d-4744-a932-0658087f49c3
parent 59451ae6
No related branches found
No related tags found
No related merge requests found
......@@ -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.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment