summaryrefslogtreecommitdiffstats
path: root/c/src/exec/score/src/thread.c
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1995-08-16 19:42:41 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1995-08-16 19:42:41 +0000
commit45819022cee43c0cef9146ccd10aaf20f99b489b (patch)
tree08693483f731596ca7ed879a2968508443f93317 /c/src/exec/score/src/thread.c
parentfinal 3.2.1 Module file and version updates (diff)
downloadrtems-45819022cee43c0cef9146ccd10aaf20f99b489b.tar.bz2
bug fixes to make macro implementations work
Diffstat (limited to 'c/src/exec/score/src/thread.c')
-rw-r--r--c/src/exec/score/src/thread.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/c/src/exec/score/src/thread.c b/c/src/exec/score/src/thread.c
index 9c9a7691c8..0cdb224bbc 100644
--- a/c/src/exec/score/src/thread.c
+++ b/c/src/exec/score/src/thread.c
@@ -10,7 +10,7 @@
* to the copyright license under the clause at DFARS 252.227-7013. This
* notice must appear in all copies of this file and its derivatives.
*
- * $Id$
+ * thread.c,v 1.5 1995/07/31 22:22:38 joel Exp
*/
#include <rtems/system.h>
@@ -628,8 +628,8 @@ void _Thread_Delay_ended(
void *ignored
)
{
- Thread_Control *the_thread;
- Objects_Locations location;
+ Thread_Control *the_thread;
+ Objects_Locations location;
the_thread = _Thread_Get( id, &location );
switch ( location ) {
@@ -791,8 +791,8 @@ boolean _Thread_Change_mode(
#ifndef USE_INLINES
STATIC INLINE Thread_Control *_Thread_Get (
- Objects_Id id,
- unsigned32 *location
+ Objects_Id id,
+ Objects_Locations *location
)
{
if ( _Objects_Are_ids_equal( id, OBJECTS_ID_OF_SELF ) ) {