summaryrefslogtreecommitdiffstats
path: root/cpukit/posix/src/prwlock.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/posix/src/prwlock.c')
-rw-r--r--cpukit/posix/src/prwlock.c17
1 files changed, 6 insertions, 11 deletions
diff --git a/cpukit/posix/src/prwlock.c b/cpukit/posix/src/prwlock.c
index 789e4305a6..8f97cb46cc 100644
--- a/cpukit/posix/src/prwlock.c
+++ b/cpukit/posix/src/prwlock.c
@@ -1,7 +1,7 @@
/*
* RWLock Manager -- Initialization
*
- * COPYRIGHT (c) 1989-2006.
+ * COPYRIGHT (c) 1989-2008.
* On-Line Applications Research Corporation (OAR).
*
* The license and distribution terms for this file may be
@@ -18,29 +18,24 @@
#include <limits.h>
#include <rtems/system.h>
+#include <rtems/config.h>
#include <rtems/posix/rwlock.h>
/**
* @brief _POSIX_RWLock_Manager_initialization
- *
- * Input parameters:
- * maximum_rwlocks - maximum configured rwlocks
- *
- * Output parameters: NONE
*/
-void _POSIX_RWLock_Manager_initialization(
- uint32_t maximum_rwlocks
-)
+void _POSIX_RWLock_Manager_initialization(void)
{
_Objects_Initialize_information(
&_POSIX_RWLock_Information, /* object information table */
OBJECTS_POSIX_API, /* object API */
OBJECTS_POSIX_SPINLOCKS, /* object class */
- maximum_rwlocks, /* maximum objects of this class */
+ Configuration_POSIX_API.maximum_rwlocks,
+ /* maximum objects of this class */
sizeof( POSIX_RWLock_Control ), /* size of this object's control block */
TRUE, /* TRUE if the name is a string */
- _POSIX_PATH_MAX /* maximum length of each object's name */
+ _POSIX_PATH_MAX /* maximum length of each object's name */
#if defined(RTEMS_MULTIPROCESSING)
,
FALSE, /* TRUE if this is a global object class */