summaryrefslogtreecommitdiffstats
path: root/cpukit/score/include
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2009-02-12 15:56:42 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2009-02-12 15:56:42 +0000
commit3aaf4797d0a147eb63980c714f6ac4b6d7fdae07 (patch)
treee9f0fecfa618ea4e2c1654be0a91cc9b141d1b94 /cpukit/score/include
parent2009-02-12 Joel Sherrill <joel.sherrill@oarcorp.com> (diff)
downloadrtems-3aaf4797d0a147eb63980c714f6ac4b6d7fdae07.tar.bz2
2009-02-12 Joel Sherrill <joel.sherrill@oarcorp.com>
* sapi/include/rtems/config.h, score/include/rtems/score/thread.h, score/src/threadidlebody.c: Change prototype of IDLE thread to consistently return void * and take a uintptr_t argument.
Diffstat (limited to 'cpukit/score/include')
-rw-r--r--cpukit/score/include/rtems/score/thread.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpukit/score/include/rtems/score/thread.h b/cpukit/score/include/rtems/score/thread.h
index b9355f0ee1..3eba3bc136 100644
--- a/cpukit/score/include/rtems/score/thread.h
+++ b/cpukit/score/include/rtems/score/thread.h
@@ -770,8 +770,8 @@ bool _Thread_Evaluate_mode( void );
/**
* This routine is the body of the system idle thread.
*/
-Thread _Thread_Idle_body(
- uint32_t ignored
+void *_Thread_Idle_body(
+ uintptr_t ignored
);
#endif