summaryrefslogtreecommitdiffstats
path: root/cpukit/posix/src/mqueuesendsupp.c
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2004-04-16 10:01:03 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2004-04-16 10:01:03 +0000
commit874297f3bea7761cf05ae26540b7a9e21d4a6e1d (patch)
tree3f514864e20beb9becc81d77053abec90d281a1a /cpukit/posix/src/mqueuesendsupp.c
parentRemove stray white spaces. (diff)
downloadrtems-874297f3bea7761cf05ae26540b7a9e21d4a6e1d.tar.bz2
Remove stray white spaces.
Diffstat (limited to 'cpukit/posix/src/mqueuesendsupp.c')
-rw-r--r--cpukit/posix/src/mqueuesendsupp.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/cpukit/posix/src/mqueuesendsupp.c b/cpukit/posix/src/mqueuesendsupp.c
index 658f879989..33109465e6 100644
--- a/cpukit/posix/src/mqueuesendsupp.c
+++ b/cpukit/posix/src/mqueuesendsupp.c
@@ -2,8 +2,8 @@
* NOTE: The structure of the routines is identical to that of POSIX
* Message_queues to leave the option of having unnamed message
* queues at a future date. They are currently not part of the
- * POSIX standard but unnamed message_queues are. This is also
- * the reason for the apparently unnecessary tracking of
+ * POSIX standard but unnamed message_queues are. This is also
+ * the reason for the apparently unnecessary tracking of
* the process_shared attribute. [In addition to the fact that
* it would be trivial to add pshared to the mq_attr structure
* and have process private message queues.]
@@ -37,7 +37,7 @@
*
* _POSIX_Message_queue_Send_support
*/
-
+
int _POSIX_Message_queue_Send_support(
mqd_t mqdes,
const char *msg_ptr,
@@ -88,7 +88,7 @@ int _POSIX_Message_queue_Send_support(
NULL,
#endif
_POSIX_Message_queue_Priority_to_core( msg_prio ),
- (the_mq_fd->oflag & O_NONBLOCK) ? FALSE : TRUE,
+ (the_mq_fd->oflag & O_NONBLOCK) ? FALSE : TRUE,
timeout /* no timeout */
);
@@ -97,7 +97,7 @@ int _POSIX_Message_queue_Send_support(
/*
* If we had to block, then this is where the task returns
* after it wakes up. The returned status is correct for
- * non-blocking operations but if we blocked, then we need
+ * non-blocking operations but if we blocked, then we need
* to look at the status in our TCB.
*/
@@ -109,7 +109,7 @@ int _POSIX_Message_queue_Send_support(
rtems_set_errno_and_return_minus_one(
_POSIX_Message_queue_Translate_core_message_queue_return_code(
- msg_status
+ msg_status
)
);
}