summaryrefslogtreecommitdiffstats
path: root/cpukit/itron/src/eventflags.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/itron/src/eventflags.c')
-rw-r--r--cpukit/itron/src/eventflags.c14
1 files changed, 6 insertions, 8 deletions
diff --git a/cpukit/itron/src/eventflags.c b/cpukit/itron/src/eventflags.c
index 6668677eef..99664f59f5 100644
--- a/cpukit/itron/src/eventflags.c
+++ b/cpukit/itron/src/eventflags.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/eventflags.h>
/*
@@ -22,21 +22,19 @@
*
* This routine initializes all event flags manager related data structures.
*
- * Input parameters:
- * maximum_eventflags - maximum configured eventflags
+ * Input parameters: NONE
*
* Output parameters: NONE
*/
-void _ITRON_Eventflags_Manager_initialization(
- uint32_t maximum_eventflags
-)
+void _ITRON_Eventflags_Manager_initialization(void)
{
_Objects_Initialize_information(
&_ITRON_Eventflags_Information, /* object information table */
OBJECTS_ITRON_API, /* object API */
OBJECTS_ITRON_EVENTFLAGS, /* object class */
- maximum_eventflags, /* maximum objects of this class */
+ Configuration_ITRON_API.maximum_eventflags,
+ /* maximum objects of this class */
sizeof( ITRON_Eventflags_Control ),
/* size of this object's control block */
FALSE, /* TRUE if names for this object are strings */