From 8a5f2ca04dc1043f6f5508762e4b3fe855d9ea24 Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Tue, 2 Nov 1999 17:18:58 +0000 Subject: Split mqueue into multiple files. --- cpukit/posix/include/rtems/posix/mqueue.h | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) (limited to 'cpukit/posix/include/rtems') 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: -- cgit v1.2.3