summaryrefslogtreecommitdiffstats
path: root/cpukit/itron/src/port.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/itron/src/port.c')
-rw-r--r--cpukit/itron/src/port.c13
1 files changed, 8 insertions, 5 deletions
diff --git a/cpukit/itron/src/port.c b/cpukit/itron/src/port.c
index 061008e0cf..4377368d22 100644
--- a/cpukit/itron/src/port.c
+++ b/cpukit/itron/src/port.c
@@ -34,14 +34,17 @@ void _ITRON_Port_Manager_initialization(
{
_Objects_Initialize_information(
&_ITRON_Port_Information, /* object information table */
+ OBJECTS_ITRON_API, /* object API */
OBJECTS_ITRON_PORTS, /* object class */
- FALSE, /* TRUE if this is a global object class */
maximum_ports, /* maximum objects of this class */
sizeof( ITRON_Port_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 */
+ 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
);
/*