summaryrefslogtreecommitdiffstats
path: root/cpukit/posix/include/rtems
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1999-11-02 17:18:58 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1999-11-02 17:18:58 +0000
commit8a5f2ca04dc1043f6f5508762e4b3fe855d9ea24 (patch)
tree82d570a27b1d0fa9567afae7c58d4e6137dd9111 /cpukit/posix/include/rtems
parentRemoved warnings. (diff)
downloadrtems-8a5f2ca04dc1043f6f5508762e4b3fe855d9ea24.tar.bz2
Split mqueue into multiple files.
Diffstat (limited to 'cpukit/posix/include/rtems')
-rw-r--r--cpukit/posix/include/rtems/posix/mqueue.h28
1 files changed, 28 insertions, 0 deletions
diff --git a/cpukit/posix/include/rtems/posix/mqueue.h b/cpukit/posix/include/rtems/posix/mqueue.h
index d1044926ef..a53ef52c4f 100644
--- a/cpukit/posix/include/rtems/posix/mqueue.h
+++ b/cpukit/posix/include/rtems/posix/mqueue.h
@@ -80,7 +80,35 @@ int _POSIX_Message_queue_Create_support(
);
/*
+ * _POSIX_Message_queue_Delete
*
+ * DESCRIPTION:
+ *
+ * This routine supports the mq_unlink and mq_close routines by
+ * doing most of the work involved with removing a message queue.
+ */
+
+void _POSIX_Message_queue_Delete(
+ POSIX_Message_queue_Control *the_mq
+);
+
+/*
+ * _POSIX_Message_queue_Receive_support
+ *
+ * DESCRIPTION:
+ *
+ * This routine supports the various flavors of receiving a message.
+ */
+
+ssize_t _POSIX_Message_queue_Receive_support(
+ mqd_t mqdes,
+ char *msg_ptr,
+ size_t msg_len,
+ unsigned int *msg_prio,
+ Watchdog_Interval timeout
+);
+
+/*
* _POSIX_Message_queue_Send_support
*
* DESCRIPTION: