summaryrefslogtreecommitdiffstats
path: root/cpukit/itron
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/itron')
-rw-r--r--cpukit/itron/include/rtems/itron/object.h2
-rw-r--r--cpukit/itron/src/cre_tsk.c4
2 files changed, 4 insertions, 2 deletions
diff --git a/cpukit/itron/include/rtems/itron/object.h b/cpukit/itron/include/rtems/itron/object.h
index 6001651743..2f97002396 100644
--- a/cpukit/itron/include/rtems/itron/object.h
+++ b/cpukit/itron/include/rtems/itron/object.h
@@ -41,7 +41,7 @@ typedef Objects_Control ITRON_Objects_Control;
*/
#define _ITRON_Objects_Open( _the_information, _the_object ) \
- _Objects_Open( (_the_information), (_the_object), NULL )
+ _Objects_Open_u32( (_the_information), (_the_object), 0 )
/*
* _ITRON_Objects_Close
diff --git a/cpukit/itron/src/cre_tsk.c b/cpukit/itron/src/cre_tsk.c
index 85a24e52d9..5ae87c1675 100644
--- a/cpukit/itron/src/cre_tsk.c
+++ b/cpukit/itron/src/cre_tsk.c
@@ -36,6 +36,7 @@ ER cre_tsk(
register Thread_Control *the_thread;
boolean status;
Priority_Control core_priority;
+ Objects_Name name;
/*
* Validate Parameters.
@@ -81,6 +82,7 @@ ER cre_tsk(
* Initialize the core thread for this task.
*/
+ name.name_u32 = 0;
core_priority = _ITRON_Task_Priority_to_Core( pk_ctsk->itskpri );
status = _Thread_Initialize(
&_ITRON_Task_Information,
@@ -97,7 +99,7 @@ ER cre_tsk(
THREAD_CPU_BUDGET_ALGORITHM_EXHAUST_TIMESLICE,
NULL, /* no budget algorithm callout */
0,
- NULL
+ name
);
if ( !status ) {