summaryrefslogtreecommitdiffstats
path: root/cpukit/itron/include/rtems/itron/vmempool.h
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2010-06-17 15:36:00 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2010-06-17 15:36:00 +0000
commit331d1f5097d449a9335a6de8f2c7b9e8e3da7f81 (patch)
tree1817d80876d11acb8d44c3fc3d51b14a8c1109f7 /cpukit/itron/include/rtems/itron/vmempool.h
parent2010-06-17 Ralf Corsépius <ralf.corsepius@rtems.org> (diff)
downloadrtems-331d1f5097d449a9335a6de8f2c7b9e8e3da7f81.tar.bz2
Remove (Abandoned).
Diffstat (limited to '')
-rw-r--r--cpukit/itron/include/rtems/itron/vmempool.h63
1 files changed, 0 insertions, 63 deletions
diff --git a/cpukit/itron/include/rtems/itron/vmempool.h b/cpukit/itron/include/rtems/itron/vmempool.h
deleted file mode 100644
index bb582b6b9d..0000000000
--- a/cpukit/itron/include/rtems/itron/vmempool.h
+++ /dev/null
@@ -1,63 +0,0 @@
-/**
- * @file rtems/itron/vmempool.h
- */
-
-/*
- * 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$
- */
-
-#ifndef _RTEMS_ITRON_VMEMPOOL_H
-#define _RTEMS_ITRON_VMEMPOOL_H
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-#include <rtems/itron/object.h>
-
-/*
- * The following defines the control block used to manage each variable
- * memory pool.
- */
-
-typedef struct {
- ITRON_Objects_Control Object;
- uint32_t XXX_more_stuff_goes_here;
-} ITRON_Variable_memory_pool_Control;
-
-/*
- * The following defines the information control block used to manage
- * this class of objects.
- */
-
-ITRON_EXTERN Objects_Information _ITRON_Variable_memory_pool_Information;
-
-/*
- * _ITRON_Variable_memory_pool_Manager_initialization
- *
- * DESCRIPTION:
- *
- * This routine performs the initialization necessary for this manager.
- */
-
-void _ITRON_Variable_memory_pool_Manager_initialization(void);
-
-/*
- * XXX insert private stuff here
- */
-
-#include <rtems/itron/vmempool.inl>
-
-#ifdef __cplusplus
-}
-#endif
-
-#endif
-/* end of include file */