summaryrefslogtreecommitdiffstats
path: root/cpukit/posix/src/psxtimercreate.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/posix/src/psxtimercreate.c')
-rw-r--r--cpukit/posix/src/psxtimercreate.c17
1 files changed, 14 insertions, 3 deletions
diff --git a/cpukit/posix/src/psxtimercreate.c b/cpukit/posix/src/psxtimercreate.c
index 5123071d99..ba5d066194 100644
--- a/cpukit/posix/src/psxtimercreate.c
+++ b/cpukit/posix/src/psxtimercreate.c
@@ -24,12 +24,12 @@
#include <errno.h>
#include <signal.h>
-#include <rtems/system.h>
-#include <rtems/seterr.h>
-#include <rtems/score/thread.h>
#include <rtems/posix/sigset.h>
#include <rtems/posix/timerimpl.h>
+#include <rtems/score/thread.h>
#include <rtems/score/watchdogimpl.h>
+#include <rtems/seterr.h>
+#include <rtems/sysinit.h>
int timer_create(
clockid_t clock_id,
@@ -99,3 +99,14 @@ int timer_create(
_Objects_Allocator_unlock();
return 0;
}
+
+static void _POSIX_Timer_Manager_initialization( void )
+{
+ _Objects_Initialize_information( &_POSIX_Timer_Information );
+}
+
+RTEMS_SYSINIT_ITEM(
+ _POSIX_Timer_Manager_initialization,
+ RTEMS_SYSINIT_POSIX_TIMER,
+ RTEMS_SYSINIT_ORDER_MIDDLE
+);