summaryrefslogtreecommitdiffstats
path: root/cpukit/itron/src/task.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/itron/src/task.c')
-rw-r--r--cpukit/itron/src/task.c10
1 files changed, 7 insertions, 3 deletions
diff --git a/cpukit/itron/src/task.c b/cpukit/itron/src/task.c
index 5c84e44ee3..75c845288e 100644
--- a/cpukit/itron/src/task.c
+++ b/cpukit/itron/src/task.c
@@ -198,13 +198,17 @@ void _ITRON_Task_Manager_initialization(
_Objects_Initialize_information(
&_ITRON_Task_Information, /* object information table */
+ OBJECTS_ITRON_API, /* object API */
OBJECTS_ITRON_TASKS, /* object class */
- FALSE, /* TRUE if this is a global object class */
maximum_tasks, /* maximum objects of this class */
sizeof( Thread_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 */
- TRUE /* TRUE if this class is threads */
+ 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
);
/*