summaryrefslogtreecommitdiffstats
path: root/cpukit/itron/src/vmempool.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/itron/src/vmempool.c')
-rw-r--r--cpukit/itron/src/vmempool.c19
1 files changed, 10 insertions, 9 deletions
diff --git a/cpukit/itron/src/vmempool.c b/cpukit/itron/src/vmempool.c
index 601e574725..b1bd8cae7f 100644
--- a/cpukit/itron/src/vmempool.c
+++ b/cpukit/itron/src/vmempool.c
@@ -35,17 +35,18 @@ void _ITRON_Variable_memory_pool_Manager_initialization(
{
_Objects_Initialize_information(
&_ITRON_Variable_memory_pool_Information, /* object information table */
+ OBJECTS_ITRON_API, /* object API */
OBJECTS_ITRON_VARIABLE_MEMORY_POOLS, /* object class */
- FALSE, /* TRUE if this is a global */
- /* object class */
- maximum_variable_memory_pools, /* maximum objects of this class */
+ maximum_variable_memory_pools, /* maximum objects of this class */
sizeof( ITRON_Variable_memory_pool_Control ),
- /* size of this object's control block */
- FALSE, /* TRUE if names for this object */
- /* are strings */
- ITRON_MAXIMUM_NAME_LENGTH, /* maximum length of each object's */
- /* name */
- FALSE /* TRUE if this class is threads */
+ /* size of this object's control block */
+ FALSE, /* TRUE if names for this object are strings */
+ ITRON_MAXIMUM_NAME_LENGTH /* maximum length of each object's name */
+#if defined(RTEMS_MULTIPROCESSING)
+ ,
+ FALSE, /* TRUE if this is a global object class */
+ NULL /* Proxy extraction support callout */
+#endif
);
/*