summaryrefslogtreecommitdiffstats
path: root/cpukit/posix/src/pspin.c
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2008-12-17 21:23:37 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2008-12-17 21:23:37 +0000
commit309e2f6f8b9cada14afd4aeda4a5e4c7f7386e6a (patch)
treea99632b3ce88dc58957029fc92e19f6e5271b590 /cpukit/posix/src/pspin.c
parent2008-12-17 Joel Sherrill <joel.sherrill@oarcorp.com> (diff)
downloadrtems-309e2f6f8b9cada14afd4aeda4a5e4c7f7386e6a.tar.bz2
2008-12-17 Joel Sherrill <joel.sherrill@oarcorp.com>
* 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.
Diffstat (limited to 'cpukit/posix/src/pspin.c')
-rw-r--r--cpukit/posix/src/pspin.c25
1 files changed, 10 insertions, 15 deletions
diff --git a/cpukit/posix/src/pspin.c b/cpukit/posix/src/pspin.c
index 0492107487..f6d2ede38e 100644
--- a/cpukit/posix/src/pspin.c
+++ b/cpukit/posix/src/pspin.c
@@ -13,7 +13,7 @@
* + acquire a spinlock
* + release a spinlock
*
- * COPYRIGHT (c) 1989-2006.
+ * COPYRIGHT (c) 1989-2008.
* On-Line Applications Research Corporation (OAR).
*
* The license and distribution terms for this file may be
@@ -30,33 +30,28 @@
#include <limits.h>
#include <rtems/system.h>
+#include <rtems/config.h>
#include <rtems/posix/spinlock.h>
/**
* @brief _POSIX_Spinlock_Manager_initialization
- *
- * Input parameters:
- * maximum_spinlocks - maximum configured spinlocks
- *
- * Output parameters: NONE
*/
-void _POSIX_Spinlock_Manager_initialization(
- uint32_t maximum_spinlocks
-)
+void _POSIX_Spinlock_Manager_initialization(void)
{
_Objects_Initialize_information(
&_POSIX_Spinlock_Information, /* object information table */
- OBJECTS_POSIX_API, /* object API */
+ OBJECTS_POSIX_API, /* object API */
OBJECTS_POSIX_SPINLOCKS, /* object class */
- maximum_spinlocks, /* maximum objects of this class */
+ Configuration_POSIX_API.maximum_spinlocks,
+ /* maximum objects of this class */
sizeof( POSIX_Spinlock_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 */
+ TRUE, /* TRUE if the name is a string */
+ _POSIX_PATH_MAX /* maximum length of each object's name */
#if defined(RTEMS_MULTIPROCESSING)
,
- FALSE, /* TRUE if this is a global object class */
- NULL /* Proxy extraction support callout */
+ FALSE, /* TRUE if this is a global object class */
+ NULL /* Proxy extraction support callout */
#endif
);
}