From d83c90f1fe65678c6585460a05fe7d0f1bbd36d4 Mon Sep 17 00:00:00 2001 From: Ralf Corsepius Date: Fri, 18 Jun 2010 02:58:15 +0000 Subject: =?UTF-8?q?2010-06-18=09Ralf=20Cors=C3=A9pius=20?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * sapi/Makefile.am: Remove src/itronapi.c. * sapi/src/itronapi.c: Remove. --- cpukit/sapi/Makefile.am | 2 +- cpukit/sapi/src/itronapi.c | 83 ---------------------------------------------- 2 files changed, 1 insertion(+), 84 deletions(-) delete mode 100644 cpukit/sapi/src/itronapi.c (limited to 'cpukit/sapi') 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 - -/* - * ITRON_API_INIT is defined so all of the ITRON API - * data will be included in this object file. - */ - -#define ITRON_API_INIT - -#include /* include this before checking RTEMS_ITRON_API */ -#ifdef RTEMS_ITRON_API - -#include - -#include -#include -#include - -#include -#include -#include -#include -#include -#include -#include -#include -#include - -/*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 */ -- cgit v1.2.3