From 309e2f6f8b9cada14afd4aeda4a5e4c7f7386e6a Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Wed, 17 Dec 2008 21:23:37 +0000 Subject: 2008-12-17 Joel Sherrill * posix/include/rtems/posix/barrier.h, posix/include/rtems/posix/cond.h, posix/include/rtems/posix/key.h, posix/include/rtems/posix/mqueue.h, posix/include/rtems/posix/mutex.h, posix/include/rtems/posix/psignal.h, posix/include/rtems/posix/pthread.h, posix/include/rtems/posix/ptimer.h, posix/include/rtems/posix/rwlock.h, posix/include/rtems/posix/semaphore.h, posix/include/rtems/posix/spinlock.h, posix/include/rtems/posix/timer.h, posix/src/cond.c, posix/src/key.c, posix/src/mqueue.c, posix/src/mutex.c, posix/src/pbarrier.c, posix/src/prwlock.c, posix/src/psignal.c, posix/src/pspin.c, posix/src/pthread.c, posix/src/pthreadinitthreads.c, posix/src/ptimer.c, posix/src/semaphore.c, sapi/src/posixapi.c: Convert POSIX manager initialization routines to directly pull parameters from configuration table. --- cpukit/posix/src/mqueue.c | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) (limited to 'cpukit/posix/src/mqueue.c') diff --git a/cpukit/posix/src/mqueue.c b/cpukit/posix/src/mqueue.c index 9b4e1f8537..33f236d50c 100644 --- a/cpukit/posix/src/mqueue.c +++ b/cpukit/posix/src/mqueue.c @@ -11,7 +11,7 @@ * This code ignores the O_RDONLY/O_WRONLY/O_RDWR flag at open * time. * - * COPYRIGHT (c) 1989-2007. + * COPYRIGHT (c) 1989-2008. * On-Line Applications Research Corporation (OAR). * * The license and distribution terms for this file may be @@ -34,6 +34,7 @@ #include #include +#include #include #include #include @@ -45,21 +46,19 @@ * * This routine initializes all message_queue manager related data structures. * - * Input parameters: - * maximum_message_queues - maximum configured message_queues + * Input parameters: NONE * * Output parameters: NONE */ -void _POSIX_Message_queue_Manager_initialization( - uint32_t maximum_message_queues -) +void _POSIX_Message_queue_Manager_initialization(void) { _Objects_Initialize_information( &_POSIX_Message_queue_Information, /* object information table */ OBJECTS_POSIX_API, /* object API */ OBJECTS_POSIX_MESSAGE_QUEUES, /* object class */ - maximum_message_queues, /* maximum objects of this class */ + Configuration_POSIX_API.maximum_message_queues, + /* maximum objects of this class */ sizeof( POSIX_Message_queue_Control ), /* size of this object's control block */ TRUE, /* TRUE if names for this object are strings */ @@ -74,7 +73,7 @@ void _POSIX_Message_queue_Manager_initialization( &_POSIX_Message_queue_Information_fds, OBJECTS_POSIX_API, OBJECTS_POSIX_MESSAGE_QUEUE_FDS, - maximum_message_queues, + Configuration_POSIX_API.maximum_message_queues, sizeof( POSIX_Message_queue_Control_fd ), /* size of this object's control block */ TRUE, /* TRUE if names for this object are strings */ -- cgit v1.2.3