2009-02-12 Joel Sherrill <joel.sherrill@oarcorp.com>

* startup/bspstart.c: Change prototype of IDLE thread to consistently
	return void * and take a uintptr_t argument.
This commit is contained in:
Joel Sherrill
2009-02-12 15:57:15 +00:00
parent 6994cd9991
commit 06f3a3ef2a
8 changed files with 24 additions and 5 deletions

View File

@@ -1,3 +1,8 @@
2009-02-12 Joel Sherrill <joel.sherrill@oarcorp.com>
* startup/bspstart.c: Change prototype of IDLE thread to consistently
return void * and take a uintptr_t argument.
2009-02-11 Ralf Corsépius <ralf.corsepius@rtems.org>
* spi/spi_init.c: Comment out fields having dropped out from

View File

@@ -160,7 +160,7 @@ void bsp_start( void)
* The MSR[POW] bit is set to put the CPU into the low power mode
* defined in HID0. HID0 is set during starup in start.S.
*/
Thread _Thread_Idle_body( uint32_t ignored)
void *_Thread_Idle_body( uintptr_t ignored )
{
while (1) {

View File

@@ -1,3 +1,8 @@
2009-02-12 Joel Sherrill <joel.sherrill@oarcorp.com>
* startup/bspstart.c: Change prototype of IDLE thread to consistently
return void * and take a uintptr_t argument.
2009-02-11 Ralf Corsépius <ralf.corsepius@rtems.org>
* startup/sd-card-init.c: Comment out fields having dropped

View File

@@ -217,7 +217,7 @@ void bsp_start(void)
/**
* @brief Idle thread body.
*/
Thread _Thread_Idle_body( uint32_t ignored)
void *_Thread_Idle_body( uintptr_t ignored )
{
while (1) {

View File

@@ -1,3 +1,8 @@
2009-02-12 Joel Sherrill <joel.sherrill@oarcorp.com>
* startup/bspstart.c: Change prototype of IDLE thread to consistently
return void * and take a uintptr_t argument.
2008-12-04 Joel Sherrill <joel.sherrill@oarcorp.com>
* bsp_specs: Move -e start from *link to *startfile to avoid warning

View File

@@ -247,8 +247,7 @@ void bsp_start(void)
* defined in HID0. HID0 is set during starup in start.S.
*
*/
Thread _Thread_Idle_body(
uint32_t ignored )
void *_Thread_Idle_body( uintptr_t ignored )
{
for( ; ; )

View File

@@ -1,3 +1,8 @@
2009-02-12 Joel Sherrill <joel.sherrill@oarcorp.com>
* startup/bspstart.c: Change prototype of IDLE thread to consistently
return void * and take a uintptr_t argument.
2009-02-11 Ralf Corsépius <ralf.corsepius@rtems.org>
* bsp_specs: Remove stray % from '*startfile:' having crept in

View File

@@ -201,7 +201,7 @@ void bsp_start( void)
* The MSR[POW] bit is set to put the CPU into the low power mode
* defined in HID0. HID0 is set during starup in start.S.
*/
Thread _Thread_Idle_body( uint32_t ignored)
void *_Thread_Idle_body( uintptr_t ignored )
{
while (1) {