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

* shared/misc/m68kidle.c: Correct prototype of Idle threads.
This commit is contained in:
Joel Sherrill
2008-07-31 15:00:11 +00:00
parent 44ad347a1b
commit 90c9d2b45f
2 changed files with 6 additions and 2 deletions

View File

@@ -1,3 +1,7 @@
2008-07-31 Joel Sherrill <joel.sherrill@OARcorp.com>
* shared/misc/m68kidle.c: Correct prototype of Idle threads.
2008-07-10 Peter Rasmussen <peter.rasmussen@embedded-brains.de>
* Makefile.am:

View File

@@ -17,7 +17,7 @@
/*PAGE
*
* _Thread_Idle_body
* _CPU_Thread_Idle_body
*
* This kernel routine is the idle thread. The idle thread runs any time
* no other thread is ready to run. This thread loops forever with
@@ -29,7 +29,7 @@
* Output parameters: NONE
*/
void _CPU_Thread_Idle_body( void )
void *_CPU_Thread_Idle_body( uint32_t ignored )
{
#if defined(mcf5272)
for( ; ; ) {