2009-02-25 Joel Sherrill <joel.sherrill@OARcorp.com>

* clock/clock.c, include/bsp.h: Make bsp idle thread names match.
This commit is contained in:
Joel Sherrill
2009-02-25 22:22:47 +00:00
parent 0b05a31d2e
commit b7beebfddb
3 changed files with 6 additions and 2 deletions

View File

@@ -1,3 +1,7 @@
2009-02-25 Joel Sherrill <joel.sherrill@OARcorp.com>
* clock/clock.c, include/bsp.h: Make bsp idle thread names match.
2009-02-12 Joel Sherrill <joel.sherrill@oarcorp.com>
* clock/clock.c, include/bsp.h: Change prototype of IDLE thread to

View File

@@ -112,7 +112,7 @@ uint32_t bsp_clock_nanoseconds_since_last_tick(void)
/*
* Provide our own version of the idle task
*/
void *_BSPThread_Idle_body( uintptr_t ignored )
void *_BSP_Thread_Idle_body( uintptr_t ignored )
{
for(;;)
asm volatile ("addq.l #1,__SRAMBASE"); /* Atomic increment */

View File

@@ -131,7 +131,7 @@ int BSP_vme2local_adrs(unsigned am, unsigned long vmeaddr, unsigned long *plocal
* So we prototype it and define the constant confdefs.h expects
* to configure a BSP specific one.
*/
void *_BSPThread_Idle_body( uintptr_t ignored );
void *_BSP_Thread_Idle_body( uintptr_t ignored );
#define BSP_IDLE_TASK_BODY _BSP_Thread_Idle_body
#ifdef __cplusplus