summaryrefslogtreecommitdiffstats
path: root/cpukit
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2009-02-12 15:55:54 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2009-02-12 15:55:54 +0000
commit59b68bd1c8b5ed1b07b59c4c68e779a206f69382 (patch)
treea17cd61701076a199ae727901dac519a10e63bc6 /cpukit
parent2009-02-12 Joel Sherrill <joel.sherrill@oarcorp.com> (diff)
downloadrtems-59b68bd1c8b5ed1b07b59c4c68e779a206f69382.tar.bz2
2009-02-12 Joel Sherrill <joel.sherrill@oarcorp.com>
* rtems/score/cpu.h: Change prototype of IDLE thread to consistently return void * and take a uintptr_t argument.
Diffstat (limited to 'cpukit')
-rw-r--r--cpukit/score/cpu/m68k/ChangeLog5
-rw-r--r--cpukit/score/cpu/m68k/rtems/score/cpu.h2
-rw-r--r--cpukit/score/cpu/sparc/ChangeLog5
-rw-r--r--cpukit/score/cpu/sparc/rtems/score/cpu.h4
4 files changed, 13 insertions, 3 deletions
diff --git a/cpukit/score/cpu/m68k/ChangeLog b/cpukit/score/cpu/m68k/ChangeLog
index c3213d256b..5e5038e1a3 100644
--- a/cpukit/score/cpu/m68k/ChangeLog
+++ b/cpukit/score/cpu/m68k/ChangeLog
@@ -1,3 +1,8 @@
+2009-02-12 Joel Sherrill <joel.sherrill@oarcorp.com>
+
+ * rtems/score/cpu.h: 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/m68k/rtems/score/cpu.h b/cpukit/score/cpu/m68k/rtems/score/cpu.h
index 3cc48847ce..c60faf34d1 100644
--- a/cpukit/score/cpu/m68k/rtems/score/cpu.h
+++ b/cpukit/score/cpu/m68k/rtems/score/cpu.h
@@ -469,7 +469,7 @@ uint32_t _CPU_ISR_Get_level( void );
* is TRUE.
*/
-void *_CPU_Thread_Idle_body( uint32_t );
+void *_CPU_Thread_Idle_body( uintptr_t ignored );
/*
* Fatal Error manager macros
diff --git a/cpukit/score/cpu/sparc/ChangeLog b/cpukit/score/cpu/sparc/ChangeLog
index 02fc70a1e4..f126f3fb9d 100644
--- a/cpukit/score/cpu/sparc/ChangeLog
+++ b/cpukit/score/cpu/sparc/ChangeLog
@@ -1,3 +1,8 @@
+2009-02-12 Joel Sherrill <joel.sherrill@oarcorp.com>
+
+ * rtems/score/cpu.h: 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/sparc/rtems/score/cpu.h b/cpukit/score/cpu/sparc/rtems/score/cpu.h
index e0909fe9bf..b88de1ca8f 100644
--- a/cpukit/score/cpu/sparc/rtems/score/cpu.h
+++ b/cpukit/score/cpu/sparc/rtems/score/cpu.h
@@ -919,8 +919,8 @@ void _CPU_ISR_install_vector(
* tries to take advantage of those models.
*/
-void *_CPU_Thread_Idle_body( uint32_t );
-
+void *_CPU_Thread_Idle_body( uintptr_t ignored );
+
#endif /* CPU_PROVIDES_IDLE_THREAD_BODY */
/*