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>
* 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
*/
void _CPU_Thread_Idle_body( void );
void *_CPU_Thread_Idle_body( uint32_t );
/**
* @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>
* 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.
*/
void _CPU_Thread_Idle_body( void );
void *_CPU_Thread_Idle_body( uint32_t );
/*
* 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>
* 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.
*/
void _CPU_Thread_Idle_body( void );
void *_CPU_Thread_Idle_body( uint32_t );
#endif /* CPU_PROVIDES_IDLE_THREAD_BODY */