2008-07-31 Joel Sherrill <joel.sherrill@OARcorp.com>

* rtems/score/cpu.h: Correct prototype of Idle threads.
This commit is contained in:
Joel Sherrill
2008-07-31 14:55:54 +00:00
parent f48873dfec
commit 432a662c1b
6 changed files with 15 additions and 3 deletions

View File

@@ -1,3 +1,7 @@
2008-07-31 Joel Sherrill <joel.sherrill@OARcorp.com>
* rtems/score/cpu.h: Correct prototype of Idle threads.
2008-06-05 Joel Sherrill <joel.sherrill@OARcorp.com> 2008-06-05 Joel Sherrill <joel.sherrill@OARcorp.com>
* rtems/score/cpu.h: Add CPU_SIMPLE_VECTORED_INTERRUPTS porting * rtems/score/cpu.h: Add CPU_SIMPLE_VECTORED_INTERRUPTS porting

View File

@@ -1223,7 +1223,7 @@ void _CPU_Install_interrupt_stack( void );
* *
* XXX document implementation including references if appropriate * XXX document implementation including references if appropriate
*/ */
void _CPU_Thread_Idle_body( void ); void *_CPU_Thread_Idle_body( uint32_t );
/** /**
* @ingroup CPUContext * @ingroup CPUContext

View File

@@ -1,3 +1,7 @@
2008-07-31 Joel Sherrill <joel.sherrill@OARcorp.com>
* rtems/score/cpu.h: Correct prototype of Idle threads.
2008-07-09 Thomas Doerfler <Thomas.Doerfler@embedded-brains.de> 2008-07-09 Thomas Doerfler <Thomas.Doerfler@embedded-brains.de>
* rtems/m68k/m68360.h: added port b pin definitions for SPI * rtems/m68k/m68360.h: added port b pin definitions for SPI

View File

@@ -469,7 +469,7 @@ uint32_t _CPU_ISR_Get_level( void );
* is TRUE. * is TRUE.
*/ */
void _CPU_Thread_Idle_body( void ); void *_CPU_Thread_Idle_body( uint32_t );
/* /*
* Fatal Error manager macros * Fatal Error manager macros

View File

@@ -1,3 +1,7 @@
2008-07-31 Joel Sherrill <joel.sherrill@OARcorp.com>
* rtems/score/cpu.h: Correct prototype of Idle threads.
2008-06-05 Joel Sherrill <joel.sherrill@OARcorp.com> 2008-06-05 Joel Sherrill <joel.sherrill@OARcorp.com>
* rtems/score/cpu.h: Add CPU_SIMPLE_VECTORED_INTERRUPTS porting * rtems/score/cpu.h: Add CPU_SIMPLE_VECTORED_INTERRUPTS porting

View File

@@ -923,7 +923,7 @@ void _CPU_ISR_install_vector(
* tries to take advantage of those models. * tries to take advantage of those models.
*/ */
void _CPU_Thread_Idle_body( void ); void *_CPU_Thread_Idle_body( uint32_t );
#endif /* CPU_PROVIDES_IDLE_THREAD_BODY */ #endif /* CPU_PROVIDES_IDLE_THREAD_BODY */