summaryrefslogtreecommitdiffstats
path: root/cpukit/posix/src/cond.c
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2015-12-14 16:29:19 +0100
committerSebastian Huber <sebastian.huber@embedded-brains.de>2016-02-03 10:00:55 +0100
commitf4fee4778e9ab8a61c00fdb34a6d2e49f2e0b2ce (patch)
tree2f409f40cb334be89f68803eaa7627f89ec413c9 /cpukit/posix/src/cond.c
parentOptional POSIX Cleanup initialization (diff)
downloadrtems-f4fee4778e9ab8a61c00fdb34a6d2e49f2e0b2ce.tar.bz2
Optional POSIX Condition Variable initialization
Update #2408.
Diffstat (limited to 'cpukit/posix/src/cond.c')
-rw-r--r--cpukit/posix/src/cond.c11
1 files changed, 10 insertions, 1 deletions
diff --git a/cpukit/posix/src/cond.c b/cpukit/posix/src/cond.c
index 5ce12d5220..d0ce8a613a 100644
--- a/cpukit/posix/src/cond.c
+++ b/cpukit/posix/src/cond.c
@@ -24,10 +24,13 @@
#include <rtems/system.h>
#include <rtems/config.h>
+#include <rtems/sysinit.h>
#include <rtems/score/watchdog.h>
#include <rtems/posix/condimpl.h>
#include <rtems/posix/muteximpl.h>
+Objects_Information _POSIX_Condition_variables_Information;
+
/*
* _POSIX_Condition_variables_Manager_initialization
*
@@ -39,7 +42,7 @@
* Output parameters: NONE
*/
-void _POSIX_Condition_variables_Manager_initialization(void)
+static void _POSIX_Condition_variables_Manager_initialization(void)
{
_Objects_Initialize_information(
&_POSIX_Condition_variables_Information, /* object information table */
@@ -58,3 +61,9 @@ void _POSIX_Condition_variables_Manager_initialization(void)
#endif
);
}
+
+RTEMS_SYSINIT_ITEM(
+ _POSIX_Condition_variables_Manager_initialization,
+ RTEMS_SYSINIT_POSIX_CONDITION_VARIABLE,
+ RTEMS_SYSINIT_ORDER_MIDDLE
+);