From c8982e5f6a4857444676165deab1e08dc91a6847 Mon Sep 17 00:00:00 2001 From: Sebastian Huber Date: Tue, 26 Apr 2016 21:20:31 +0200 Subject: posix: Simplify message queues The mq_open() function returns a descriptor to a POSIX message queue object identified by a name. This is similar to sem_open(). In contrast to the POSIX semaphore the POSIX message queues use a separate object for the descriptor. This extra object is superfluous, since the object identifier can be used directly for this purpose, just like for the semaphores. Update #2702. Update #2555. --- cpukit/libcsupport/include/rtems/libcsupport.h | 1 - 1 file changed, 1 deletion(-) (limited to 'cpukit/libcsupport/include/rtems') diff --git a/cpukit/libcsupport/include/rtems/libcsupport.h b/cpukit/libcsupport/include/rtems/libcsupport.h index 1e1655142b..c0fab6be97 100644 --- a/cpukit/libcsupport/include/rtems/libcsupport.h +++ b/cpukit/libcsupport/include/rtems/libcsupport.h @@ -114,7 +114,6 @@ typedef struct { uint32_t active_barriers; uint32_t active_condition_variables; uint32_t active_message_queues; - uint32_t active_message_queue_descriptors; uint32_t active_mutexes; uint32_t active_rwlocks; uint32_t active_semaphores; -- cgit v1.2.3