summaryrefslogtreecommitdiffstats
path: root/cpukit/itron
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/itron')
-rw-r--r--cpukit/itron/src/exd_tsk.c4
-rw-r--r--cpukit/itron/src/task.c4
2 files changed, 4 insertions, 4 deletions
diff --git a/cpukit/itron/src/exd_tsk.c b/cpukit/itron/src/exd_tsk.c
index c99282f4d8..1cae344a53 100644
--- a/cpukit/itron/src/exd_tsk.c
+++ b/cpukit/itron/src/exd_tsk.c
@@ -1,5 +1,5 @@
/*
- * COPYRIGHT (c) 1989-1999.
+ * COPYRIGHT (c) 1989-2008.
* On-Line Applications Research Corporation (OAR).
*
* The license and distribution terms for this file may be
@@ -34,7 +34,7 @@ void exd_tsk( void )
_Thread_Disable_dispatch();
- the_information = _Objects_Get_information( _Thread_Executing->Object.id );
+ the_information = _Objects_Get_information_id( _Thread_Executing->Object.id );
/* This should never happen if _Thread_Get() works right */
assert( the_information );
diff --git a/cpukit/itron/src/task.c b/cpukit/itron/src/task.c
index 863bb214d0..eba7450b94 100644
--- a/cpukit/itron/src/task.c
+++ b/cpukit/itron/src/task.c
@@ -1,5 +1,5 @@
/*
- * COPYRIGHT (c) 1989-1999.
+ * COPYRIGHT (c) 1989-2008.
* On-Line Applications Research Corporation (OAR).
*
* The license and distribution terms for this file may be
@@ -95,7 +95,7 @@ ER _ITRON_Delete_task(
{
Objects_Information *the_information;
- the_information = _Objects_Get_information( the_thread->Object.id );
+ the_information = _Objects_Get_information_id( the_thread->Object.id );
if ( !the_information ) {
return E_OBJ; /* XXX - should never happen */
}