summaryrefslogtreecommitdiffstats
path: root/cpukit/itron/src/fmempool.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/itron/src/fmempool.c')
-rw-r--r--cpukit/itron/src/fmempool.c14
1 files changed, 6 insertions, 8 deletions
diff --git a/cpukit/itron/src/fmempool.c b/cpukit/itron/src/fmempool.c
index e42a7a1b6f..9d8f40b1b6 100644
--- a/cpukit/itron/src/fmempool.c
+++ b/cpukit/itron/src/fmempool.c
@@ -1,5 +1,5 @@
/*
- * COPYRIGHT (c) 1989-2007.
+ * COPYRIGHT (c) 1989-2008.
* On-Line Applications Research Corporation (OAR).
*
* The license and distribution terms for this file may be
@@ -14,7 +14,7 @@
#endif
#include <rtems/itron.h>
-
+#include <rtems/config.h>
#include <rtems/itron/fmempool.h>
/*
@@ -23,21 +23,19 @@
* This routine initializes all fixed memory pool manager related
* data structures.
*
- * Input parameters:
- * maximum_fixed_memory_pools - maximum configured fixed memory pools
+ * Input parameters: NONE
*
* Output parameters: NONE
*/
-void _ITRON_Fixed_memory_pool_Manager_initialization(
- uint32_t maximum_fixed_memory_pools
-)
+void _ITRON_Fixed_memory_pool_Manager_initialization(void)
{
_Objects_Initialize_information(
&_ITRON_Fixed_memory_pool_Information, /* object information table */
OBJECTS_ITRON_API, /* object API */
OBJECTS_ITRON_FIXED_MEMORY_POOLS, /* object class */
- maximum_fixed_memory_pools, /* maximum objects of this class */
+ Configuration_ITRON_API.maximum_fixed_memory_pools,
+ /* maximum objects of this class */
sizeof( ITRON_Fixed_memory_pool_Control ),
/* size of this object's control block */
FALSE, /* TRUE if names for this object are strings */