summaryrefslogtreecommitdiffstats
path: root/cpukit/sapi/src/posixapi.c
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2015-12-15 09:38:31 +0100
committerSebastian Huber <sebastian.huber@embedded-brains.de>2016-02-03 10:00:56 +0100
commit529b08a705ef1b3bf3a1ef817aa043a74ce0e5ca (patch)
tree2b52cff5ccbf570d7f52a4ca4bdbbfe8203874bd /cpukit/sapi/src/posixapi.c
parentOptional POSIX Keys initialization (diff)
downloadrtems-529b08a705ef1b3bf3a1ef817aa043a74ce0e5ca.tar.bz2
posix: Delete empty _POSIX_API_Initialize()
Diffstat (limited to 'cpukit/sapi/src/posixapi.c')
-rw-r--r--cpukit/sapi/src/posixapi.c24
1 files changed, 0 insertions, 24 deletions
diff --git a/cpukit/sapi/src/posixapi.c b/cpukit/sapi/src/posixapi.c
index b3839ddd84..d1de103f18 100644
--- a/cpukit/sapi/src/posixapi.c
+++ b/cpukit/sapi/src/posixapi.c
@@ -19,35 +19,11 @@
#include "config.h"
#endif
-#define POSIX_API_INIT
-
-#include <rtems/system.h> /* include this before checking RTEMS_POSIX_API */
-
-#include <rtems/config.h>
#include <rtems/posix/posixapi.h>
-#ifdef RTEMS_POSIX_API
-#include <sys/types.h>
-#include <mqueue.h>
-#include <rtems/config.h>
-#include <rtems/posix/config.h>
-#include <rtems/posix/priorityimpl.h>
-#include <rtems/posix/psignalimpl.h>
-#endif
-
void _POSIX_Fatal_error( POSIX_Fatal_domain domain, int eno )
{
uint32_t code = ( domain << 8 ) | ( ( uint32_t ) eno & 0xffU );
_Terminate( INTERNAL_ERROR_POSIX_API, false, code );
}
-
-void _POSIX_API_Initialize(void)
-{
- /*
- * If there are any type size assumptions in the POSIX API, this is
- * the appropriate place to place them.
- *
- * Currently, there are no none type size assumptions.
- */
-}