summaryrefslogtreecommitdiffstats
path: root/c-user/message/introduction.rst
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2021-01-15 14:08:09 +0100
committerSebastian Huber <sebastian.huber@embedded-brains.de>2021-04-23 08:32:22 +0200
commit63a9e0c55c48baa496fbfbc906c79debf8692812 (patch)
treef5b163736853850c6b267eac68dbc2841aef3165 /c-user/message/introduction.rst
parentc-user: Generate rate-monotonic manager docs (diff)
downloadrtems-docs-63a9e0c55c48baa496fbfbc906c79debf8692812.tar.bz2
c-user: Generate message manager documentation
The documentation is a consolidation of the comments in Doxygen markup and the documentation sources in Sphinx markup. The documentation was transfered to interface specification items. The documentation source files were generated from the items by a script. Update #3993.
Diffstat (limited to '')
-rw-r--r--c-user/message/introduction.rst67
1 files changed, 55 insertions, 12 deletions
diff --git a/c-user/message/introduction.rst b/c-user/message/introduction.rst
index b10e06c..89fbfca 100644
--- a/c-user/message/introduction.rst
+++ b/c-user/message/introduction.rst
@@ -1,28 +1,71 @@
.. SPDX-License-Identifier: CC-BY-SA-4.0
+.. Copyright (C) 2020, 2021 embedded brains GmbH (http://www.embedded-brains.de)
.. Copyright (C) 1988, 2008 On-Line Applications Research Corporation (OAR)
+.. This file is part of the RTEMS quality process and was automatically
+.. generated. If you find something that needs to be fixed or
+.. worded better please post a report or patch to an RTEMS mailing list
+.. or raise a bug report:
+..
+.. https://www.rtems.org/bugs.html
+..
+.. For information on updating and regenerating please refer to the How-To
+.. section in the Software Requirements Engineering chapter of the
+.. RTEMS Software Engineering manual. The manual is provided as a part of
+.. a release. For development sources please refer to the online
+.. documentation at:
+..
+.. https://docs.rtems.org
+
+.. Generated from spec:/rtems/message/if/group
+
+.. _MessageManagerIntroduction:
+
Introduction
============
-The message manager provides communication and synchronization capabilities
-using RTEMS message queues. The directives provided by the message manager
-are:
+.. The following list was generated from:
+.. spec:/rtems/message/if/create
+.. spec:/rtems/message/if/construct
+.. spec:/rtems/message/if/ident
+.. spec:/rtems/message/if/delete
+.. spec:/rtems/message/if/send
+.. spec:/rtems/message/if/urgent
+.. spec:/rtems/message/if/broadcast
+.. spec:/rtems/message/if/receive
+.. spec:/rtems/message/if/get-number-pending
+.. spec:/rtems/message/if/flush
+.. spec:/rtems/message/if/buffer
+
+The Message Manager provides communication and synchronization capabilities
+using RTEMS message queues. The directives provided by the Message Manager are:
+
+* :ref:`InterfaceRtemsMessageQueueCreate` - Creates a message queue.
+
+* :ref:`InterfaceRtemsMessageQueueConstruct` - Constructs a message queue from
+ the specified the message queue configuration.
-- :ref:`rtems_message_queue_create`
+* :ref:`InterfaceRtemsMessageQueueIdent` - Identifies a message queue by the
+ object name.
-- :ref:`rtems_message_queue_ident`
+* :ref:`InterfaceRtemsMessageQueueDelete` - Deletes the message queue.
-- :ref:`rtems_message_queue_delete`
+* :ref:`InterfaceRtemsMessageQueueSend` - Puts the message at the rear of the
+ queue.
-- :ref:`rtems_message_queue_send`
+* :ref:`InterfaceRtemsMessageQueueUrgent` - Puts the message at the front of
+ the queue.
-- :ref:`rtems_message_queue_urgent`
+* :ref:`InterfaceRtemsMessageQueueBroadcast` - Broadcasts the messages to the
+ tasks waiting at the queue.
-- :ref:`rtems_message_queue_broadcast`
+* :ref:`InterfaceRtemsMessageQueueReceive` - Receives a message from the queue.
-- :ref:`rtems_message_queue_receive`
+* :ref:`InterfaceRtemsMessageQueueGetNumberPending` - Gets the number of
+ messages pending on the queue.
-- :ref:`rtems_message_queue_get_number_pending`
+* :ref:`InterfaceRtemsMessageQueueFlush` - Flushes all messages on the queue.
-- :ref:`rtems_message_queue_flush`
+* :ref:`InterfaceRTEMSMESSAGEQUEUEBUFFER` - Defines a structure which can be
+ used as a message queue buffer for messages of the specified maximum size.