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/ptimer.c | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) (limited to 'cpukit/posix/src/ptimer.c') 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 /* _POSIX_PATH_MAX */ #include +#include #include #include #include @@ -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 */ -- cgit v1.2.3