summaryrefslogtreecommitdiffstats
path: root/cpukit/posix/src/semaphore.c
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2015-12-14 16:34:50 +0100
committerSebastian Huber <sebastian.huber@embedded-brains.de>2016-02-03 10:00:55 +0100
commit2189b3e963f7e43e9fc577ab4f24c952cef5b08e (patch)
treec8766c8417fcb06105f4e9736b6eeeb0974d315f /cpukit/posix/src/semaphore.c
parentOptional POSIX Message Queue initialization (diff)
downloadrtems-2189b3e963f7e43e9fc577ab4f24c952cef5b08e.tar.bz2
Optional POSIX Semaphore initialization
Update #2408.
Diffstat (limited to 'cpukit/posix/src/semaphore.c')
-rw-r--r--cpukit/posix/src/semaphore.c11
1 files changed, 10 insertions, 1 deletions
diff --git a/cpukit/posix/src/semaphore.c b/cpukit/posix/src/semaphore.c
index 5830373d3a..db3ae0c2b5 100644
--- a/cpukit/posix/src/semaphore.c
+++ b/cpukit/posix/src/semaphore.c
@@ -28,9 +28,12 @@
#include <rtems/system.h>
#include <rtems/config.h>
+#include <rtems/sysinit.h>
#include <rtems/posix/semaphoreimpl.h>
#include <rtems/seterr.h>
+Objects_Information _POSIX_Semaphore_Information;
+
/*
* _POSIX_Semaphore_Manager_initialization
*
@@ -41,7 +44,7 @@
* Output parameters: NONE
*/
-void _POSIX_Semaphore_Manager_initialization(void)
+static void _POSIX_Semaphore_Manager_initialization(void)
{
_Objects_Initialize_information(
&_POSIX_Semaphore_Information, /* object information table */
@@ -60,3 +63,9 @@ void _POSIX_Semaphore_Manager_initialization(void)
#endif
);
}
+
+RTEMS_SYSINIT_ITEM(
+ _POSIX_Semaphore_Manager_initialization,
+ RTEMS_SYSINIT_POSIX_SEMAPHORE,
+ RTEMS_SYSINIT_ORDER_MIDDLE
+);