forked from Imagelibrary/rtems
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:
@@ -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
|
||||
|
||||
@@ -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) {
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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) {
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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( ; ; )
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user