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.c19
1 files changed, 10 insertions, 9 deletions
diff --git a/cpukit/itron/src/eventflags.c b/cpukit/itron/src/eventflags.c
index 2bed194beb..86296fca5d 100644
--- a/cpukit/itron/src/eventflags.c
+++ b/cpukit/itron/src/eventflags.c
@@ -34,17 +34,18 @@ void _ITRON_Eventflags_Manager_initialization(
{
_Objects_Initialize_information(
&_ITRON_Eventflags_Information, /* object information table */
+ OBJECTS_ITRON_API, /* object API */
OBJECTS_ITRON_EVENTFLAGS, /* object class */
- FALSE, /* TRUE if this is a global */
- /* object class */
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 */
- ITRON_MAXIMUM_NAME_LENGTH, /* maximum length of each object's */
- /* name */
- FALSE /* TRUE if this class is threads */
+ sizeof( ITRON_Eventflags_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 */
+#if defined(RTEMS_MULTIPROCESSING)
+ ,
+ FALSE, /* TRUE if this is a global object class */
+ NULL /* Proxy extraction support callout */
+#endif
);
/*