summaryrefslogtreecommitdiffstats
path: root/cpukit/sapi
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2010-06-18 02:58:15 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2010-06-18 02:58:15 +0000
commitd83c90f1fe65678c6585460a05fe7d0f1bbd36d4 (patch)
tree628921b42a3b02699910734c503ff8318d12114d /cpukit/sapi
parent2010-06-18 Ralf Corsépius <ralf.corsepius@rtems.org> (diff)
downloadrtems-d83c90f1fe65678c6585460a05fe7d0f1bbd36d4.tar.bz2
2010-06-18 Ralf Corsépius <ralf.corsepius@rtems.org>
* sapi/Makefile.am: Remove src/itronapi.c. * sapi/src/itronapi.c: Remove.
Diffstat (limited to 'cpukit/sapi')
-rw-r--r--cpukit/sapi/Makefile.am2
-rw-r--r--cpukit/sapi/src/itronapi.c83
2 files changed, 1 insertions, 84 deletions
diff --git a/cpukit/sapi/Makefile.am b/cpukit/sapi/Makefile.am
index 505fb1fd90..16c2e87e06 100644
--- a/cpukit/sapi/Makefile.am
+++ b/cpukit/sapi/Makefile.am
@@ -26,7 +26,7 @@ libsapi_a_SOURCES = src/debug.c src/extension.c src/extensioncreate.c \
src/extensiondelete.c src/extensionident.c src/fatal.c src/exinit.c \
src/exshutdown.c src/io.c src/ioclose.c src/iocontrol.c src/iodata.c \
src/ioinitialize.c src/ioopen.c src/ioread.c src/ioregisterdriver.c \
- src/iounregisterdriver.c src/iowrite.c src/itronapi.c src/posixapi.c \
+ src/iounregisterdriver.c src/iowrite.c src/posixapi.c \
src/rtemsapi.c src/extensiondata.c src/getversionstring.c
libsapi_a_CPPFLAGS = $(AM_CPPFLAGS)
diff --git a/cpukit/sapi/src/itronapi.c b/cpukit/sapi/src/itronapi.c
deleted file mode 100644
index 038c6b14d1..0000000000
--- a/cpukit/sapi/src/itronapi.c
+++ /dev/null
@@ -1,83 +0,0 @@
-/*
- * ITRON API Initialization Support
- *
- * NOTE:
- *
- * COPYRIGHT (c) 1989-2008.
- * On-Line Applications Research Corporation (OAR).
- *
- * The license and distribution terms for this file may be
- * found in the file LICENSE in this distribution or at
- * http://www.rtems.com/license/LICENSE.
- *
- * $Id$
- */
-
-#if HAVE_CONFIG_H
-#include "config.h"
-#endif
-
-#include <assert.h>
-
-/*
- * ITRON_API_INIT is defined so all of the ITRON API
- * data will be included in this object file.
- */
-
-#define ITRON_API_INIT
-
-#include <rtems/system.h> /* include this before checking RTEMS_ITRON_API */
-#ifdef RTEMS_ITRON_API
-
-#include <rtems/itron.h>
-
-#include <sys/types.h>
-#include <rtems/config.h>
-#include <rtems/score/object.h>
-
-#include <rtems/itron/eventflags.h>
-#include <rtems/itron/fmempool.h>
-#include <rtems/itron/itronapi.h>
-#include <rtems/itron/mbox.h>
-#include <rtems/itron/msgbuffer.h>
-#include <rtems/itron/port.h>
-#include <rtems/itron/semaphore.h>
-#include <rtems/itron/task.h>
-#include <rtems/itron/vmempool.h>
-
-/*PAGE
- *
- * _ITRON_API_Initialize
- *
- * XXX
- */
-
-Objects_Information *_ITRON_Objects[ OBJECTS_ITRON_CLASSES_LAST + 1 ];
-
-void _ITRON_API_Initialize(void)
-{
- /*
- * If there are any type size assumptions in the ITRON API, this is
- * the appropriate place to place them.
- *
- * Currently, there are no none type size assumptions.
- */
-
- /*
- * Install our API Object Management Table and initialize the
- * various managers.
- */
- _Objects_Information_table[OBJECTS_ITRON_API] = _ITRON_Objects;
-
- _ITRON_Task_Manager_initialization();
- _ITRON_Semaphore_Manager_initialization();
- _ITRON_Eventflags_Manager_initialization();
- _ITRON_Fixed_memory_pool_Manager_initialization();
- _ITRON_Mailbox_Manager_initialization();
- _ITRON_Message_buffer_Manager_initialization();
- _ITRON_Port_Manager_initialization();
- _ITRON_Variable_memory_pool_Manager_initialization();
-}
-
-#endif
-/* end of file */