summaryrefslogtreecommitdiffstats
path: root/c/src/exec/itron/macros
diff options
context:
space:
mode:
Diffstat (limited to 'c/src/exec/itron/macros')
-rw-r--r--c/src/exec/itron/macros/.cvsignore2
-rw-r--r--c/src/exec/itron/macros/Makefile.am26
-rw-r--r--c/src/exec/itron/macros/rtems/.cvsignore2
-rw-r--r--c/src/exec/itron/macros/rtems/itron/.cvsignore2
-rw-r--r--c/src/exec/itron/macros/rtems/itron/eventflags.inl76
-rw-r--r--c/src/exec/itron/macros/rtems/itron/fmempool.inl78
-rw-r--r--c/src/exec/itron/macros/rtems/itron/intr.inl30
-rw-r--r--c/src/exec/itron/macros/rtems/itron/mbox.inl75
-rw-r--r--c/src/exec/itron/macros/rtems/itron/msgbuffer.inl78
-rw-r--r--c/src/exec/itron/macros/rtems/itron/network.inl30
-rw-r--r--c/src/exec/itron/macros/rtems/itron/port.inl75
-rw-r--r--c/src/exec/itron/macros/rtems/itron/semaphore.inl102
-rw-r--r--c/src/exec/itron/macros/rtems/itron/sysmgmt.inl30
-rw-r--r--c/src/exec/itron/macros/rtems/itron/task.inl102
-rw-r--r--c/src/exec/itron/macros/rtems/itron/time.inl30
-rw-r--r--c/src/exec/itron/macros/rtems/itron/vmempool.inl81
16 files changed, 0 insertions, 819 deletions
diff --git a/c/src/exec/itron/macros/.cvsignore b/c/src/exec/itron/macros/.cvsignore
deleted file mode 100644
index 282522db03..0000000000
--- a/c/src/exec/itron/macros/.cvsignore
+++ /dev/null
@@ -1,2 +0,0 @@
-Makefile
-Makefile.in
diff --git a/c/src/exec/itron/macros/Makefile.am b/c/src/exec/itron/macros/Makefile.am
deleted file mode 100644
index 954b38e39c..0000000000
--- a/c/src/exec/itron/macros/Makefile.am
+++ /dev/null
@@ -1,26 +0,0 @@
-##
-## $Id$
-##
-
-
-include_rtems_itrondir = $(includedir)/rtems/itron
-
-$(PROJECT_INCLUDE)/rtems/itron:
- @$(mkinstalldirs) $@
-$(PROJECT_INCLUDE)/%: %
- $(INSTALL_DATA) $< $@
-
-if MACROS
-include_rtems_itron_HEADERS = rtems/itron/eventflags.inl \
- rtems/itron/fmempool.inl rtems/itron/intr.inl rtems/itron/mbox.inl \
- rtems/itron/msgbuffer.inl rtems/itron/network.inl rtems/itron/port.inl \
- rtems/itron/semaphore.inl rtems/itron/sysmgmt.inl rtems/itron/task.inl \
- rtems/itron/time.inl rtems/itron/vmempool.inl
-
-PREINSTALL_FILES = $(PROJECT_INCLUDE)/rtems/itron \
- $(include_rtems_itron_HEADERS:%=$(PROJECT_INCLUDE)/%)
-endif
-
-all-local: $(PREINSTALL_FILES)
-
-include $(top_srcdir)/../automake/local.am
diff --git a/c/src/exec/itron/macros/rtems/.cvsignore b/c/src/exec/itron/macros/rtems/.cvsignore
deleted file mode 100644
index 282522db03..0000000000
--- a/c/src/exec/itron/macros/rtems/.cvsignore
+++ /dev/null
@@ -1,2 +0,0 @@
-Makefile
-Makefile.in
diff --git a/c/src/exec/itron/macros/rtems/itron/.cvsignore b/c/src/exec/itron/macros/rtems/itron/.cvsignore
deleted file mode 100644
index 282522db03..0000000000
--- a/c/src/exec/itron/macros/rtems/itron/.cvsignore
+++ /dev/null
@@ -1,2 +0,0 @@
-Makefile
-Makefile.in
diff --git a/c/src/exec/itron/macros/rtems/itron/eventflags.inl b/c/src/exec/itron/macros/rtems/itron/eventflags.inl
deleted file mode 100644
index 73e6ded0b1..0000000000
--- a/c/src/exec/itron/macros/rtems/itron/eventflags.inl
+++ /dev/null
@@ -1,76 +0,0 @@
-/*
- * COPYRIGHT (c) 1989-1999.
- * 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.OARcorp.com/rtems/license.html.
- *
- * $Id$
- */
-
-#ifndef __ITRON_EVENTFLAGS_inl_
-#define __ITRON_EVENTFLAGS_inl_
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-/*
- * _ITRON_Eventflags_Allocate
- */
-
-#define _ITRON_Eventflags_Allocate( _flgid ) \
- (ITRON_Eventflags_Control *)_ITRON_Objects_Allocate_by_index( \
- &_ITRON_Eventflags_Information, \
- (_flgid), \
- sizeof(ITRON_Eventflags_Control) \
- )
-
-/*
- * _ITRON_Eventflags_Clarify_allocation_id_error
- */
-
-#define _ITRON_Eventflags_Clarify_allocation_id_error( _id ) \
- _ITRON_Objects_Clarify_allocation_id_error( \
- &_ITRON_Eventflags_Information, (_id) )
-
-/*
- * _ITRON_Eventflags_Clarify_get_id_error
- */
-
-#define _ITRON_Eventflags_Clarify_get_id_error( _id ) \
- _ITRON_Objects_Clarify_get_id_error( &_ITRON_Eventflags_Information, (_id) )
-
-/*
- * _ITRON_Eventflags_Free
- */
-
-#define _ITRON_Eventflags_Free( _the_eventflags ) \
- _ITRON_Objects_Free( &_ITRON_Eventflags_Information, \
- &(_the_eventflags)->Object )
-
-
-/*
- * _ITRON_Eventflags_Get
- */
-
-#define _ITRON_Eventflags_Get( _id, _location ) \
- (ITRON_Eventflags_Control *) \
- _ITRON_Objects_Get( &_ITRON_Eventflags_Information, (_id), (_location) )
-
-/*PAGE
- *
- * _ITRON_Eventflags_Is_null
- */
-
-#define _ITRON_Eventflags_Is_null( _the_eventflags ) \
- ( (_the_eventflags) == NULL );
-
-#ifdef __cplusplus
-}
-#endif
-
-#endif
-/* end of include file */
-
diff --git a/c/src/exec/itron/macros/rtems/itron/fmempool.inl b/c/src/exec/itron/macros/rtems/itron/fmempool.inl
deleted file mode 100644
index 5d1f6db314..0000000000
--- a/c/src/exec/itron/macros/rtems/itron/fmempool.inl
+++ /dev/null
@@ -1,78 +0,0 @@
-/*
- * COPYRIGHT (c) 1989-1999.
- * 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.OARcorp.com/rtems/license.html.
- *
- * $Id$
- */
-
-#ifndef __ITRON_FIXED_MEMORY_POOL_inl_
-#define __ITRON_FIXED_MEMORY_POOL_inl_
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-/*
- * _ITRON_Fixed_memory_pool_Allocate
- */
-
-#define _ITRON_Fixed_memory_pool_Allocate( _mpfid ) \
- (ITRON_Fixed_memory_pool_Control *)_ITRON_Objects_Allocate_by_index( \
- &_ITRON_Fixed_memory_pool_Information, \
- (_mpfid), \
- sizeof(ITRON_Fixed_memory_pool_Control) \
- )
-
-/*
- * _ITRON_Fixed_memory_pool_Clarify_allocation_id_error
- */
-
-#define _ITRON_Fixed_memory_pool_Clarify_allocation_id_error( _id ) \
- _ITRON_Objects_Clarify_allocation_id_error( \
- &_ITRON_Fixed_memory_pool_Information, (_id) )
-
-/*
- * _ITRON_Fixed_memory_pool_Clarify_get_id_error
- */
-
-#define _ITRON_Fixed_memory_pool_Clarify_get_id_error( _id ) \
- _ITRON_Objects_Clarify_get_id_error( \
- &_ITRON_Fixed_memory_pool_Information, (_id) )
-
-/*
- * _ITRON_Fixed_memory_pool_Free
- */
-
-#define _ITRON_Fixed_memory_pool_Free( _the_fixed_memory_pool ) \
- _ITRON_Objects_Free( \
- &_ITRON_Fixed_memory_pool_Information, \
- &(_the_fixed_memory_pool)->Object \
- )
-
-/*
- * _ITRON_Fixed_memory_pool_Get
- */
-
-#define _ITRON_Fixed_memory_pool_Get( _id, _location ) \
- (ITRON_Fixed_memory_pool_Control *) \
- _ITRON_Objects_Get( &_ITRON_Fixed_memory_pool_Information, \
- (_id), (_location) )
-
-/*
- * _ITRON_Fixed_memory_pool_Is_null
- */
-
-#define _ITRON_Fixed_memory_pool_Is_null( _the_fixed_memory_pool ) \
- ( (_the_fixed_memory_pool) == NULL )
-
-#ifdef __cplusplus
-}
-#endif
-
-#endif
-/* end of include file */
-
diff --git a/c/src/exec/itron/macros/rtems/itron/intr.inl b/c/src/exec/itron/macros/rtems/itron/intr.inl
deleted file mode 100644
index 93c44eff00..0000000000
--- a/c/src/exec/itron/macros/rtems/itron/intr.inl
+++ /dev/null
@@ -1,30 +0,0 @@
-/*
- * COPYRIGHT (c) 1989-1999.
- * 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.OARcorp.com/rtems/license.html.
- *
- * $Id$
- */
-
-#ifndef __ITRON_INTERRUPT_inl_
-#define __ITRON_INTERRUPT_inl_
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-/*
- * XXX insert inline routines here
- */
-
-
-#ifdef __cplusplus
-}
-#endif
-
-#endif
-/* end of include file */
-
diff --git a/c/src/exec/itron/macros/rtems/itron/mbox.inl b/c/src/exec/itron/macros/rtems/itron/mbox.inl
deleted file mode 100644
index 739cd46f88..0000000000
--- a/c/src/exec/itron/macros/rtems/itron/mbox.inl
+++ /dev/null
@@ -1,75 +0,0 @@
-/*
- * COPYRIGHT (c) 1989-1999.
- * 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.OARcorp.com/rtems/license.html.
- *
- * $Id$
- */
-
-#ifndef __ITRON_MAILBOX_inl_
-#define __ITRON_MAILBOX_inl_
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-/*
- * _ITRON_Mailbox_Allocate
- */
-
-#define _ITRON_Mailbox_Allocate( _mbxid ) \
- (ITRON_Mailbox_Control *)_ITRON_Objects_Allocate_by_index( \
- &_ITRON_Mailbox_Information, \
- (_mbxid), \
- sizeof(ITRON_Mailbox_Control) \
- )
-
-/*
- * _ITRON_Mailbox_Clarify_allocation_id_error
- */
-
-#define _ITRON_Mailbox_Clarify_allocation_id_error( _id ) \
- _ITRON_Objects_Clarify_allocation_id_error( \
- &_ITRON_Mailbox_Information, (_id) )
-
-/*
- * _ITRON_Mailbox_Clarify_get_id_error
- */
-
-#define _ITRON_Mailbox_Clarify_get_id_error( _id ) \
- _ITRON_Objects_Clarify_get_id_error( &_ITRON_Mailbox_Information, (_id) )
-
-/*
- * _ITRON_Mailbox_Free
- */
-
-#define _ITRON_Mailbox_Free( _the_mailbox ) \
- _ITRON_Objects_Free( &_ITRON_Mailbox_Information, &(_the_mailbox)->Object )
-
-/*PAGE
- *
- * _ITRON_Mailbox_Get
- */
-
-#define _ITRON_Mailbox_Get( _id, _location ) \
- (ITRON_Mailbox_Control *) \
- _ITRON_Objects_Get( &_ITRON_Mailbox_Information, (_id), (_location) )
-
-/*PAGE
- *
- * _ITRON_Mailbox_Is_null
- */
-
-#define _ITRON_Mailbox_Is_null( _the_mailbox ) \
- ( (_the_mailbox) == NULL )
-
-#ifdef __cplusplus
-}
-#endif
-
-#endif
-/* end of include file */
-
diff --git a/c/src/exec/itron/macros/rtems/itron/msgbuffer.inl b/c/src/exec/itron/macros/rtems/itron/msgbuffer.inl
deleted file mode 100644
index be33b7d107..0000000000
--- a/c/src/exec/itron/macros/rtems/itron/msgbuffer.inl
+++ /dev/null
@@ -1,78 +0,0 @@
-/*
- * COPYRIGHT (c) 1989-1999.
- * 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.OARcorp.com/rtems/license.html.
- *
- * $Id$
- */
-
-#ifndef __ITRON_MESSAGE_BUFFER_inl_
-#define __ITRON_MESSAGE_BUFFER_inl_
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-/*
- * _ITRON_Message_buffer_Allocate
- */
-
-#define _ITRON_Message_buffer_Allocate( _mbfid ) \
- (ITRON_Message_buffer_Control *)_ITRON_Objects_Allocate_by_index( \
- &_ITRON_Message_buffer_Information, \
- (_mbfid), \
- sizeof(ITRON_Message_buffer_Control) \
- )
-
-/*
- * _ITRON_Message_buffer_Clarify_allocation_id_error
- */
-
-#define _ITRON_Message_buffer_Clarify_allocation_id_error( _id ) \
- _ITRON_Objects_Clarify_allocation_id_error( \
- &_ITRON_Message_buffer_Information, (_id) )
-
-/*
- * _ITRON_Message_buffer_Clarify_get_id_error
- */
-
-#define _ITRON_Message_buffer_Clarify_get_id_error( _id ) \
- _ITRON_Objects_Clarify_get_id_error( &_ITRON_Message_buffer_Information, (_id) )
-
-/*
- * _ITRON_Message_buffer_Free
- */
-
-#define _ITRON_Message_buffer_Free( _the_message_buffer ) \
- _ITRON_Objects_Free( \
- &_ITRON_Message_buffer_Information, \
- &(_the_message_buffer)->Object \
- )
-
-/*PAGE
- *
- * _ITRON_Message_buffer_Get
- */
-
-#define _ITRON_Message_buffer_Get( _id, _location ) \
- (ITRON_Message_buffer_Control *) \
- _ITRON_Objects_Get( &_ITRON_Message_buffer_Information, (_id), (_location) )
-
-/*PAGE
- *
- * _ITRON_Message_buffer_Is_null
- */
-
-#define _ITRON_Message_buffer_Is_null( _the_message_buffer ) \
- ( (_the_message_buffer) == NULL )
-
-#ifdef __cplusplus
-}
-#endif
-
-#endif
-/* end of include file */
-
diff --git a/c/src/exec/itron/macros/rtems/itron/network.inl b/c/src/exec/itron/macros/rtems/itron/network.inl
deleted file mode 100644
index dd833bb079..0000000000
--- a/c/src/exec/itron/macros/rtems/itron/network.inl
+++ /dev/null
@@ -1,30 +0,0 @@
-/*
- * COPYRIGHT (c) 1989-1999.
- * 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.OARcorp.com/rtems/license.html.
- *
- * $Id$
- */
-
-#ifndef __ITRON_NETWORK_inl_
-#define __ITRON_NETWORK_inl_
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-/*
- * XXX insert inline routines here
- */
-
-
-#ifdef __cplusplus
-}
-#endif
-
-#endif
-/* end of include file */
-
diff --git a/c/src/exec/itron/macros/rtems/itron/port.inl b/c/src/exec/itron/macros/rtems/itron/port.inl
deleted file mode 100644
index 0f402fef3c..0000000000
--- a/c/src/exec/itron/macros/rtems/itron/port.inl
+++ /dev/null
@@ -1,75 +0,0 @@
-/*
- * COPYRIGHT (c) 1989-1999.
- * 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.OARcorp.com/rtems/license.html.
- *
- * $Id$
- */
-
-#ifndef __ITRON_PORT_inl_
-#define __ITRON_PORT_inl_
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-/*
- * _ITRON_Port_Allocate
- */
-
-#define _ITRON_Port_Allocate( _porid ) \
- (ITRON_Port_Control *)_ITRON_Objects_Allocate_by_index( \
- &_ITRON_Port_Information, \
- (_porid), \
- sizeof(ITRON_Port_Control) \
- )
-
-/*
- * _ITRON_Port_Clarify_allocation_id_error
- */
-
-#define _ITRON_Port_Clarify_allocation_id_error( _id ) \
- _ITRON_Objects_Clarify_allocation_id_error( \
- &_ITRON_Port_Information, (_id) )
-
-/*
- * _ITRON_Port_Clarify_get_id_error
- */
-
-#define _ITRON_Port_Clarify_get_id_error( _id ) \
- _ITRON_Objects_Clarify_get_id_error( &_ITRON_Port_Information, (_id) )
-
-/*
- * _ITRON_Port_Free
- */
-
-#define _ITRON_Port_Free( _the_port ) \
- _ITRON_Objects_Free( &_ITRON_Port_Information, &(_the_port)->Object )
-
-/*PAGE
- *
- * _ITRON_Port_Get
- */
-
-#define _ITRON_Port_Get( _id, _location ) \
- (ITRON_Port_Control *) \
- _ITRON_Objects_Get( &_ITRON_Port_Information, (_id), (_location) )
-
-/*PAGE
- *
- * _ITRON_Port_Is_null
- */
-
-#define _ITRON_Port_Is_null( _the_port ) \
- ( (_the_port) == NULL )
-
-#ifdef __cplusplus
-}
-#endif
-
-#endif
-/* end of include file */
-
diff --git a/c/src/exec/itron/macros/rtems/itron/semaphore.inl b/c/src/exec/itron/macros/rtems/itron/semaphore.inl
deleted file mode 100644
index ec435e1648..0000000000
--- a/c/src/exec/itron/macros/rtems/itron/semaphore.inl
+++ /dev/null
@@ -1,102 +0,0 @@
-/*
- * COPYRIGHT (c) 1989-1999.
- * 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.OARcorp.com/rtems/license.html.
- *
- * $Id$
- */
-
-#ifndef __ITRON_SEMAPHORE_inl_
-#define __ITRON_SEMAPHORE_inl_
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-/*
- * _ITRON_Semaphore_Allocate
- */
-
-#define _ITRON_Semaphore_Allocate( _semid ) \
- (ITRON_Semaphore_Control *)_ITRON_Objects_Allocate_by_index( \
- &_ITRON_Semaphore_Information, \
- (_semid), \
- sizeof(ITRON_Semaphore_Control) \
- )
-
-/*
- * _ITRON_Semaphore_Clarify_allocation_id_error
- */
-
-#define _ITRON_Semaphore_Clarify_allocation_id_error( _id ) \
- _ITRON_Objects_Clarify_allocation_id_error( \
- &_ITRON_Semaphore_Information, (_id) )
-
-/*
- * _ITRON_Semaphore_Clarify_get_id_error
- */
-
-#define _ITRON_Semaphore_Clarify_get_id_error( _id ) \
- _ITRON_Objects_Clarify_get_id_error( &_ITRON_Semaphore_Information, (_id) )
-
-/*
- * _ITRON_Semaphore_Free
- */
-
-#define _ITRON_Semaphore_Free( _the_semaphore ) \
- _ITRON_Objects_Free( &_ITRON_Semaphore_Information, &(_the_semaphore)->Object )
-
-/*PAGE
- *
- * _ITRON_Semaphore_Get
- */
-
-#define _ITRON_Semaphore_Get( _id, _location ) \
- (ITRON_Semaphore_Control *) \
- _ITRON_Objects_Get( &_ITRON_Semaphore_Information, (_id), (_location) )
-
-/*PAGE
- *
- * _ITRON_Semaphore_Is_null
- */
-
-#define _ITRON_Semaphore_Is_null( _the_semaphore ) \
- ( (_the_semaphore) == NULL )
-
-/*
- * _ITRON_Semaphore_Translate_core_semaphore_return_code
- */
-
-/* XXX fix me */
-static ER _ITRON_Semaphore_Translate_core_semaphore_return_code (
- unsigned32 the_semaphore_status
-)
-{
-/* XXX need to be able to return "E_RLWAI" */
- switch ( the_semaphore_status ) {
- case CORE_SEMAPHORE_STATUS_SUCCESSFUL:
- return E_OK;
- case CORE_SEMAPHORE_STATUS_UNSATISFIED_NOWAIT:
- return E_TMOUT;
- case CORE_SEMAPHORE_WAS_DELETED:
- return E_DLT;
- case CORE_SEMAPHORE_TIMEOUT:
- return E_TMOUT;
- case CORE_SEMAPHORE_MAXIMUM_COUNT_EXCEEDED:
- return E_QOVR;
- case THREAD_STATUS_PROXY_BLOCKING:
- return THREAD_STATUS_PROXY_BLOCKING;
- }
- return E_OK; /* unreached - only to remove warnings */
-}
-
-#ifdef __cplusplus
-}
-#endif
-
-#endif
-/* end of include file */
-
diff --git a/c/src/exec/itron/macros/rtems/itron/sysmgmt.inl b/c/src/exec/itron/macros/rtems/itron/sysmgmt.inl
deleted file mode 100644
index 183232a785..0000000000
--- a/c/src/exec/itron/macros/rtems/itron/sysmgmt.inl
+++ /dev/null
@@ -1,30 +0,0 @@
-/*
- * COPYRIGHT (c) 1989-1999.
- * 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.OARcorp.com/rtems/license.html.
- *
- * $Id$
- */
-
-#ifndef __ITRON_TIME_inl_
-#define __ITRON_TIME_inl_
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-/*
- * XXX insert inline routines here
- */
-
-
-#ifdef __cplusplus
-}
-#endif
-
-#endif
-/* end of include file */
-
diff --git a/c/src/exec/itron/macros/rtems/itron/task.inl b/c/src/exec/itron/macros/rtems/itron/task.inl
deleted file mode 100644
index 807a02fc6f..0000000000
--- a/c/src/exec/itron/macros/rtems/itron/task.inl
+++ /dev/null
@@ -1,102 +0,0 @@
-/*
- * COPYRIGHT (c) 1989-1999.
- * 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.OARcorp.com/rtems/license.html.
- *
- * $Id$
- */
-
-#ifndef __ITRON_TASK_inl_
-#define __ITRON_TASK_inl_
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-/*
- * _ITRON_Task_Allocate
- */
-
-#define _ITRON_Task_Allocate( _tskid ) \
- (Thread_Control *)_ITRON_Objects_Allocate_by_index( \
- &_ITRON_Task_Information, \
- (_tskid), \
- sizeof(Thread_Control) \
- )
-
-/*
- * _ITRON_Task_Clarify_allocation_id_error
- */
-
-#define _ITRON_Task_Clarify_allocation_id_error( _id ) \
- _ITRON_Objects_Clarify_allocation_id_error( \
- &_ITRON_Task_Information, (_id) )
-
-/*
- * _ITRON_Task_Clarify_get_id_error
- */
-
-#define _ITRON_Task_Clarify_get_id_error( _id ) \
- _ITRON_Objects_Clarify_get_id_error( &_ITRON_Task_Information, (_id) )
-
-/*
- * _ITRON_Task_Free
- */
-
-#define _ITRON_Task_Free( _the_task ) \
- _ITRON_Objects_Free( &_ITRON_Task_Information, &(_the_task)->Object )
-
-/*PAGE
- *
- * _ITRON_Task_Get
- */
-
-/* XXX fix me */
-static Thread_Control *_ITRON_Task_Get (
- ID id,
- Objects_Locations *location
-)
-{
- if ( id == 0 ) {
- _Thread_Disable_dispatch();
- *location = OBJECTS_LOCAL;
- return _Thread_Executing;
- }
-
- return (Thread_Control *)
- _ITRON_Objects_Get( &_ITRON_Task_Information, id, location );
-}
-
-/*PAGE
- *
- * _ITRON_Task_Is_null
- */
-
-#define _ITRON_Task_Is_null( _the_task ) \
- ( (_the_task) == NULL )
-
-/*PAGE
- *
- * _ITRON_tasks_Priority_to_Core
- */
-
-#define _ITRON_Task_Priority_to_Core( _ITRON_priority ) \
- ((Priority_Control) (_ITRON_priority))
-
-/*PAGE
- *
- * _ITRON_tasks_Core_to_Priority
- */
-
-#define _ITRON_Task_Core_to_Priority( _core_priority ) \
- ((PRI) (_core_priority))
-
-#ifdef __cplusplus
-}
-#endif
-
-#endif
-/* end of include file */
diff --git a/c/src/exec/itron/macros/rtems/itron/time.inl b/c/src/exec/itron/macros/rtems/itron/time.inl
deleted file mode 100644
index 183232a785..0000000000
--- a/c/src/exec/itron/macros/rtems/itron/time.inl
+++ /dev/null
@@ -1,30 +0,0 @@
-/*
- * COPYRIGHT (c) 1989-1999.
- * 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.OARcorp.com/rtems/license.html.
- *
- * $Id$
- */
-
-#ifndef __ITRON_TIME_inl_
-#define __ITRON_TIME_inl_
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-/*
- * XXX insert inline routines here
- */
-
-
-#ifdef __cplusplus
-}
-#endif
-
-#endif
-/* end of include file */
-
diff --git a/c/src/exec/itron/macros/rtems/itron/vmempool.inl b/c/src/exec/itron/macros/rtems/itron/vmempool.inl
deleted file mode 100644
index e235e477ed..0000000000
--- a/c/src/exec/itron/macros/rtems/itron/vmempool.inl
+++ /dev/null
@@ -1,81 +0,0 @@
-/*
- * COPYRIGHT (c) 1989-1999.
- * 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.OARcorp.com/rtems/license.html.
- *
- * $Id$
- */
-
-#ifndef __ITRON_VARIABLE_MEMORY_POOL_inl_
-#define __ITRON_VARIABLE_MEMORY_POOL_inl_
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-/*
- * _ITRON_Variable_memory_pool_Allocate
- */
-
-#define _ITRON_Variable_memory_pool_Allocate( _mplid ) \
- (ITRON_Variable_memory_pool_Control *)_ITRON_Objects_Allocate_by_index( \
- &_ITRON_Variable_memory_pool_Information, \
- (_mplid), \
- sizeof(ITRON_Variable_memory_pool_Control) \
- )
-
-/*
- * _ITRON_Variable_memory_pool_Clarify_allocation_id_error
- */
-
-#define _ITRON_Variable_memory_pool_Clarify_allocation_id_error( _id ) \
- _ITRON_Objects_Clarify_allocation_id_error( \
- &_ITRON_Variable_memory_pool_Information, (_id) )
-
-/*
- * _ITRON_Variable_memory_pool_Clarify_get_id_error
- */
-
-#define _ITRON_Variable_memory_pool_Clarify_get_id_error( _id ) \
- _ITRON_Objects_Clarify_get_id_error( &_ITRON_Variable_memory_pool_Information, (_id) )
-
-/*
- * _ITRON_Variable_memory_pool_Free
- */
-
-#define _ITRON_Variable_memory_pool_Free( _the_variable_memory_pool ) \
- _ITRON_Objects_Free( \
- &_ITRON_Variable_memory_pool_Information, \
- &(_the_variable_memory_pool)->Object \
- )
-
-/*PAGE
- *
- * _ITRON_Variable_memory_pool_Get
- */
-
-#define _ITRON_Variable_memory_pool_Get( _id, _location ) \
- (ITRON_Variable_memory_pool_Control *) _ITRON_Objects_Get( \
- &_ITRON_Variable_memory_pool_Information, \
- (_id), \
- (_location) \
- )
-
-/*PAGE
- *
- * _ITRON_Variable_memory_pool_Is_null
- */
-
-#define _ITRON_Variable_memory_pool_Is_null( _the_variable_memory_pool ) \
- ( (_the_variable_memory_pool) == NULL )
-
-#ifdef __cplusplus
-}
-#endif
-
-#endif
-/* end of include file */
-