summaryrefslogtreecommitdiffstats
path: root/c/src/exec/rtems/inline/rtems/rtems/tasks.inl
diff options
context:
space:
mode:
Diffstat (limited to 'c/src/exec/rtems/inline/rtems/rtems/tasks.inl')
-rw-r--r--c/src/exec/rtems/inline/rtems/rtems/tasks.inl4
1 files changed, 2 insertions, 2 deletions
diff --git a/c/src/exec/rtems/inline/rtems/rtems/tasks.inl b/c/src/exec/rtems/inline/rtems/rtems/tasks.inl
index 10d3e3c197..d392b8b370 100644
--- a/c/src/exec/rtems/inline/rtems/rtems/tasks.inl
+++ b/c/src/exec/rtems/inline/rtems/rtems/tasks.inl
@@ -30,7 +30,7 @@
STATIC INLINE Thread_Control *_RTEMS_tasks_Allocate( void )
{
- return (Thread_Control *) _Objects_Allocate( &_Thread_Information );
+ return (Thread_Control *) _Objects_Allocate( &_RTEMS_tasks_Information );
}
/*PAGE
@@ -43,7 +43,7 @@ STATIC INLINE void _RTEMS_tasks_Free (
Thread_Control *the_task
)
{
- _Objects_Free( &_Thread_Information, &the_task->Object );
+ _Objects_Free( &_RTEMS_tasks_Information, &the_task->Object );
}
/*PAGE