9
0
Fork 0

Fix comments

git-svn-id: https://nuttx.svn.sourceforge.net/svnroot/nuttx/trunk@590 7fd9a85b-ad96-42d3-883c-3090e2eb8679
This commit is contained in:
patacongo 2008-01-30 14:02:16 +00:00
parent 85053e0a46
commit b4b64c39cf
1 changed files with 2 additions and 2 deletions

View File

@ -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.