summaryrefslogtreecommitdiffstats
path: root/cpukit/posix/src/ptimer.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/ptimer.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/ptimer.c')
-rw-r--r--cpukit/posix/src/ptimer.c14
1 files changed, 9 insertions, 5 deletions
diff --git a/cpukit/posix/src/ptimer.c b/cpukit/posix/src/ptimer.c
index 570646e906..3ee6cf8aa5 100644
--- a/cpukit/posix/src/ptimer.c
+++ b/cpukit/posix/src/ptimer.c
@@ -1,5 +1,5 @@
/*
- * COPYRIGHT (c) 1989-2007.
+ * COPYRIGHT (c) 1989-2008.
* On-Line Applications Research Corporation (OAR).
*
* The license and distribution terms for this file may be
@@ -18,6 +18,7 @@
#include <limits.h> /* _POSIX_PATH_MAX */
#include <rtems/system.h>
+#include <rtems/config.h>
#include <rtems/score/isr.h>
#include <rtems/score/thread.h>
#include <rtems/score/tod.h>
@@ -44,17 +45,20 @@
/*
* _POSIX_Timer_Manager_initialization
*
- * Description: Initialize the internal structure in which the data of all
- * the timers are stored
+ * Description:
+ *
+ * Initialize the internal structure in which the data of all
+ * the timers are stored
*/
-void _POSIX_Timer_Manager_initialization ( int maximum_timers )
+void _POSIX_Timer_Manager_initialization(void)
{
_Objects_Initialize_information(
&_POSIX_Timer_Information, /* object information table */
OBJECTS_POSIX_API, /* object API */
OBJECTS_POSIX_TIMERS, /* object class */
- maximum_timers, /* maximum objects of this class */
+ Configuration_POSIX_API.maximum_timers,
+ /* maximum objects of this class */
sizeof( POSIX_Timer_Control ),
/* size of this object's control block */
TRUE, /* TRUE if names for this object are strings */