summaryrefslogtreecommitdiffstats
path: root/cpukit/score/src
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1996-03-21 20:19:55 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1996-03-21 20:19:55 +0000
commit14966f8153456626d7f1c05b452ba89934dba334 (patch)
tree1afb33f1f99780f14128daac3bd9a5f82cade0e6 /cpukit/score/src
parentupdated for 68302 and so gen68360 bsp would compile (diff)
downloadrtems-14966f8153456626d7f1c05b452ba89934dba334.tar.bz2
*** empty log message ***
Diffstat (limited to 'cpukit/score/src')
-rw-r--r--cpukit/score/src/thread.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/cpukit/score/src/thread.c b/cpukit/score/src/thread.c
index 258fcb92bd..79fa859cbe 100644
--- a/cpukit/score/src/thread.c
+++ b/cpukit/score/src/thread.c
@@ -93,7 +93,7 @@ void _Thread_Handler_initialization(
void _Thread_Create_idle( void )
{
- Thread (*idle);
+ void *idle;
/*
* The entire workspace is zeroed during its initialization. Thus, all
@@ -1114,7 +1114,7 @@ boolean _Thread_Evaluate_mode( void )
#ifndef USE_INLINES
-STATIC INLINE Thread_Control *_Thread_Get (
+Thread_Control *_Thread_Get (
Objects_Id id,
Objects_Locations *location
)
@@ -1145,6 +1145,8 @@ STATIC INLINE Thread_Control *_Thread_Get (
return (Thread_Control *) _Objects_Get( information, id, location );
}
+#endif
+
/*PAGE
*
* _Thread_Idle_body
@@ -1167,5 +1169,3 @@ Thread _Thread_Idle_body(
for( ; ; ) ;
}
#endif
-
-#endif