summaryrefslogtreecommitdiffstats
path: root/cpukit/score/include/rtems/score/coremsg.h
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2009-11-28 05:58:54 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2009-11-28 05:58:54 +0000
commit20f02c63a77bc9b21b0970dba1d808d6c2e8748f (patch)
treece3984621695dcd0d19a975ef8c3ca12fe8e3a48 /cpukit/score/include/rtems/score/coremsg.h
parentWhite space removal. (diff)
downloadrtems-20f02c63a77bc9b21b0970dba1d808d6c2e8748f.tar.bz2
Whitespace removal.
Diffstat (limited to 'cpukit/score/include/rtems/score/coremsg.h')
-rw-r--r--cpukit/score/include/rtems/score/coremsg.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/cpukit/score/include/rtems/score/coremsg.h b/cpukit/score/include/rtems/score/coremsg.h
index 8f28373eea..4a93f6de25 100644
--- a/cpukit/score/include/rtems/score/coremsg.h
+++ b/cpukit/score/include/rtems/score/coremsg.h
@@ -1,4 +1,4 @@
-/**
+/**
* @file rtems/score/coremsg.h
*
* This include file contains all the constants and structures associated
@@ -106,7 +106,7 @@ typedef enum {
CORE_MESSAGE_QUEUE_DISCIPLINES_PRIORITY
} CORE_message_queue_Disciplines;
-/**
+/**
* @brief Message Priority for Appending
*
* This is the priority constant used when appending messages onto
@@ -114,7 +114,7 @@ typedef enum {
*/
#define CORE_MESSAGE_QUEUE_SEND_REQUEST INT_MAX
-/**
+/**
* @brief Message Priority for Prepending
*
* This is the priority constant used when prepending messages onto
@@ -228,7 +228,7 @@ typedef struct {
*/
CORE_message_queue_Buffer *message_buffers;
#if defined(RTEMS_SCORE_COREMSG_ENABLE_NOTIFICATION)
- /** This is the routine invoked when the message queue transitions
+ /** This is the routine invoked when the message queue transitions
* from zero (0) messages pending to one (1) message pending.
*/
CORE_message_queue_Notify_Handler notify_handler;
@@ -255,7 +255,7 @@ typedef struct {
* may be sent to this message queue instance
*
* @return true if the message queue can be initialized. In general,
- * false will only be returned if memory for the pending
+ * false will only be returned if memory for the pending
* messages cannot be allocated.
*/
bool _CORE_message_queue_Initialize(
@@ -337,7 +337,7 @@ uint32_t _CORE_message_queue_Flush_support(
* @param[in] size is the size of the message being broadcast
* @param[in] id is the RTEMS object Id associated with this message queue.
* It is used when unblocking a remote thread.
- * @param[in] api_message_queue_mp_support is the routine to invoke if
+ * @param[in] api_message_queue_mp_support is the routine to invoke if
* a thread that is unblocked is actually a remote thread.
* @param[out] count points to the variable that will contain the
* number of tasks that are sent this message
@@ -368,7 +368,7 @@ CORE_message_queue_Status _CORE_message_queue_Broadcast(
* @param[in] size is the size of the message being send
* @param[in] id is the RTEMS object Id associated with this message queue.
* It is used when unblocking a remote thread.
- * @param[in] api_message_queue_mp_support is the routine to invoke if
+ * @param[in] api_message_queue_mp_support is the routine to invoke if
* a thread that is unblocked is actually a remote thread.
* @param[in] submit_type determines whether the message is prepended,
* appended, or enqueued in priority order.
@@ -408,7 +408,7 @@ CORE_message_queue_Status _CORE_message_queue_Submit(
* if the message queue is empty.
* @param[in] timeout is the maximum number of clock ticks that the calling
* thread is willing to block if the message queue is empty.
- *
+ *
* @return indication of the successful completion or reason for failure
* @note Returns message priority via return are in TCB.
*/