summaryrefslogtreecommitdiffstats
path: root/cpukit/posix/include
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/include
parentOptional POSIX Message Queue initialization (diff)
downloadrtems-2189b3e963f7e43e9fc577ab4f24c952cef5b08e.tar.bz2
Optional POSIX Semaphore initialization
Update #2408.
Diffstat (limited to 'cpukit/posix/include')
-rw-r--r--cpukit/posix/include/rtems/posix/semaphoreimpl.h9
1 files changed, 1 insertions, 8 deletions
diff --git a/cpukit/posix/include/rtems/posix/semaphoreimpl.h b/cpukit/posix/include/rtems/posix/semaphoreimpl.h
index eeea51c488..fe5ee44034 100644
--- a/cpukit/posix/include/rtems/posix/semaphoreimpl.h
+++ b/cpukit/posix/include/rtems/posix/semaphoreimpl.h
@@ -33,7 +33,7 @@ extern "C" {
* This defines the information control block used to manage
* this class of objects.
*/
-POSIX_EXTERN Objects_Information _POSIX_Semaphore_Information;
+extern Objects_Information _POSIX_Semaphore_Information;
/**
* This defines the mapping from Score status codes to POSIX return codes.
@@ -41,13 +41,6 @@ POSIX_EXTERN Objects_Information _POSIX_Semaphore_Information;
extern const int
_POSIX_Semaphore_Return_codes[CORE_SEMAPHORE_STATUS_LAST + 1];
-/**
- * @brief POSIX Semaphore Manager Initialization
- *
- * This routine performs the initialization necessary for this manager.
- */
-void _POSIX_Semaphore_Manager_initialization(void);
-
RTEMS_INLINE_ROUTINE POSIX_Semaphore_Control *
_POSIX_Semaphore_Allocate_unprotected( void )
{