mirror of
https://gitlab.rtems.org/rtems/rtos/rtems.git
synced 2026-09-23 16:02:05 +08:00
2009-02-12 Joel Sherrill <joel.sherrill@oarcorp.com>
* include/bsp.h, 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>
|
||||
|
||||
* include/bsp.h, startup/bspstart.c: Change prototype of IDLE thread to
|
||||
consistently return void * and take a uintptr_t argument.
|
||||
|
||||
2008-12-04 Ralf Corsépius <ralf.corsepius@rtems.org>
|
||||
|
||||
* bsp_specs: Remove references to start_g.o.
|
||||
|
||||
@@ -235,7 +235,7 @@ extern int rtems_mpc5200_fec_driver_attach_detach (struct rtems_bsdnet_ifconfig
|
||||
#define USE_SLICETIMER_0 TRUE
|
||||
#define USE_SLICETIMER_1 FALSE
|
||||
|
||||
Thread _Thread_Idle_body(uint32_t ignored);
|
||||
void *_Thread_Idle_body( uintptr_t ignored );
|
||||
#define BSP_IDLE_TASK_BODY _Thread_Idle_body
|
||||
|
||||
/* BSP specific IRQ Benchmarking support */
|
||||
|
||||
@@ -203,7 +203,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(;;) {
|
||||
asm volatile(
|
||||
|
||||
Reference in New Issue
Block a user