summaryrefslogtreecommitdiffstats
path: root/cpukit/score/cpu
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2009-02-12 15:55:36 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2009-02-12 15:55:36 +0000
commit8bbead13c0eae2f7700297228a8485c43ebfa525 (patch)
tree0c4ab7be1341a9c922e0b7a2966b6b287428fd82 /cpukit/score/cpu
parent2009-02-11 Joel Sherrill <joel.sherrill@oarcorp.com> (diff)
downloadrtems-8bbead13c0eae2f7700297228a8485c43ebfa525.tar.bz2
2009-02-12 Joel Sherrill <joel.sherrill@oarcorp.com>
* cpu.c: Change prototype of IDLE thread to consistently return void * and take a uintptr_t argument.
Diffstat (limited to 'cpukit/score/cpu')
-rw-r--r--cpukit/score/cpu/c4x/ChangeLog5
-rw-r--r--cpukit/score/cpu/c4x/cpu.c2
-rw-r--r--cpukit/score/cpu/h8300/ChangeLog5
-rw-r--r--cpukit/score/cpu/h8300/cpu.c2
4 files changed, 12 insertions, 2 deletions
diff --git a/cpukit/score/cpu/c4x/ChangeLog b/cpukit/score/cpu/c4x/ChangeLog
index fa8767afcc..9dc072b5cb 100644
--- a/cpukit/score/cpu/c4x/ChangeLog
+++ b/cpukit/score/cpu/c4x/ChangeLog
@@ -1,3 +1,8 @@
+2009-02-12 Joel Sherrill <joel.sherrill@oarcorp.com>
+
+ * cpu.c: Change prototype of IDLE thread to consistently return void *
+ and take a uintptr_t argument.
+
2009-02-11 Joel Sherrill <joel.sherrill@oarcorp.com>
* cpu.c, rtems/score/cpu.h: Eliminate _CPU_Thread_dispatch_pointer and
diff --git a/cpukit/score/cpu/c4x/cpu.c b/cpukit/score/cpu/c4x/cpu.c
index d06752464b..582765f111 100644
--- a/cpukit/score/cpu/c4x/cpu.c
+++ b/cpukit/score/cpu/c4x/cpu.c
@@ -163,7 +163,7 @@ void _CPU_ISR_install_vector(
*/
#if (CPU_PROVIDES_IDLE_THREAD_BODY == 1)
-void *_CPU_Thread_Idle_body( uint32_t ignored )
+void *_CPU_Thread_Idle_body( uintptr_t ignored )
{
for( ; ; ) {
diff --git a/cpukit/score/cpu/h8300/ChangeLog b/cpukit/score/cpu/h8300/ChangeLog
index 825b8e323a..42248f64e5 100644
--- a/cpukit/score/cpu/h8300/ChangeLog
+++ b/cpukit/score/cpu/h8300/ChangeLog
@@ -1,3 +1,8 @@
+2009-02-12 Joel Sherrill <joel.sherrill@oarcorp.com>
+
+ * cpu.c: Change prototype of IDLE thread to consistently return void *
+ and take a uintptr_t argument.
+
2009-02-11 Joel Sherrill <joel.sherrill@oarcorp.com>
* cpu.c, rtems/score/cpu.h: Eliminate _CPU_Thread_dispatch_pointer and
diff --git a/cpukit/score/cpu/h8300/cpu.c b/cpukit/score/cpu/h8300/cpu.c
index 2784bdcd46..4d97aebb07 100644
--- a/cpukit/score/cpu/h8300/cpu.c
+++ b/cpukit/score/cpu/h8300/cpu.c
@@ -143,7 +143,7 @@ void _CPU_Install_interrupt_stack( void )
*/
#if 0
-void *_CPU_Thread_Idle_body( uint32_t ignored )
+void *_CPU_Thread_Idle_body( uintptr_t ignored )
{
for( ; ; )