summaryrefslogtreecommitdiffstats
path: root/posix1003-1/message_passing.rst
diff options
context:
space:
mode:
authorJoel Sherrill <joel@rtems.org>2017-08-28 13:03:40 -0500
committerJoel Sherrill <joel@rtems.org>2017-10-12 20:25:13 -0500
commit2c3cf2166dd35152bb006d027476400be8759615 (patch)
treec9bde69e8015ae32d259a962694187d742a8ea0b /posix1003-1/message_passing.rst
parentShorten BSP and Driver Guide name (missed commit) (diff)
downloadrtems-docs-2c3cf2166dd35152bb006d027476400be8759615.tar.bz2
New version of POSIX Compliance Guide
This is a replacement of the POSIX 1003.1 Compliance Guide. It will be generated from a .csv file. Updates #3177.
Diffstat (limited to 'posix1003-1/message_passing.rst')
-rw-r--r--posix1003-1/message_passing.rst83
1 files changed, 0 insertions, 83 deletions
diff --git a/posix1003-1/message_passing.rst b/posix1003-1/message_passing.rst
deleted file mode 100644
index 90dea4a..0000000
--- a/posix1003-1/message_passing.rst
+++ /dev/null
@@ -1,83 +0,0 @@
-.. comment SPDX-License-Identifier: CC-BY-SA-4.0
-
-Message Passing
-###############
-
-Data Definitions for Message Queues
-===================================
-
-Data Structures
----------------
-
-NOTE: Semaphores are implemented but only unnamed semaphores
-are currently tested.
-.. code:: c
-
- mqd_t, Type, Implemented
- struct mq_attr, Type, Implemented
-
-Message Passing Functions
-=========================
-
-Open a Message Queue
---------------------
-
-.. code:: c
-
- mq_open(), Function, Implemented
-
-Close a Message Queue
----------------------
-
-.. code:: c
-
- mq_close(), Function, Implemented
-
-Remove a Message Queue
-----------------------
-
-.. code:: c
-
- mq_unlink(), Function, Implemented
-
-Send a Message to a Message Queue
----------------------------------
-
-.. code:: c
-
- mq_send(), Function, Implemented
-
-Receive a Message From a Message Queue
---------------------------------------
-
-.. code:: c
-
- mq_receive(), Function, Implemented
-
-Notify Process That a Message is Available on a Queue
------------------------------------------------------
-
-.. code:: c
-
- mq_notify(), Function, Implemented
-
-Set Message Queue Attributes
-----------------------------
-
-.. code:: c
-
- mq_setattr(), Function, Implemented
-
-Get Message Queue Attributes
-----------------------------
-
-.. code:: c
-
- mq_getattr(), Function, Implemented
-
-.. COMMENT: COPYRIGHT (c) 1988-2002.
-
-.. COMMENT: On-Line Applications Research Corporation (OAR).
-
-.. COMMENT: All rights reserved.
-