summaryrefslogtreecommitdiffstats
path: root/cpukit/posix/src/mqueueopen.c
diff options
context:
space:
mode:
authorJennifer Averett <Jennifer.Averett@OARcorp.com>2000-01-13 18:22:32 +0000
committerJennifer Averett <Jennifer.Averett@OARcorp.com>2000-01-13 18:22:32 +0000
commitd78c6fe3d3b6097d098c0ea26a6bd722f2b70b42 (patch)
treebff34255949d7b796ce8e1ac542d0d8309f723fb /cpukit/posix/src/mqueueopen.c
parentRemoved referance to rtems error. (diff)
downloadrtems-d78c6fe3d3b6097d098c0ea26a6bd722f2b70b42.tar.bz2
+ Comment cleanup
Diffstat (limited to 'cpukit/posix/src/mqueueopen.c')
-rw-r--r--cpukit/posix/src/mqueueopen.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/cpukit/posix/src/mqueueopen.c b/cpukit/posix/src/mqueueopen.c
index 28ad7aab6b..c0ae35e465 100644
--- a/cpukit/posix/src/mqueueopen.c
+++ b/cpukit/posix/src/mqueueopen.c
@@ -51,7 +51,6 @@ mqd_t mq_open(
_Thread_Disable_dispatch();
- /* XXX is attr used with out being initialized otherwise? */
if ( oflag & O_CREAT ) {
va_start(arg, oflag);
mode = (mode_t) va_arg( arg, mode_t );
@@ -104,8 +103,7 @@ mqd_t mq_open(
}
- /* XXX verify this comment...
- *
+ /*
* At this point, the message queue does not exist and everything has been
* checked. We should go ahead and create a message queue.
*/
@@ -130,3 +128,7 @@ mqd_t mq_open(
return (mqd_t) the_mq->Object.id;
}
+
+
+
+