summaryrefslogtreecommitdiffstats
path: root/cpukit/score/cpu/bfin/cpu.c
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2006-10-23 17:19:52 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2006-10-23 17:19:52 +0000
commit5b8b467017343c724afaa5251ef5cc749de9cfef (patch)
tree68fdc2c87c09ec31ee1e30ecbb0e143c916e7cb3 /cpukit/score/cpu/bfin/cpu.c
parent2006-10-23 Joel Sherrill <joel@OARcorp.com> (diff)
downloadrtems-5b8b467017343c724afaa5251ef5cc749de9cfef.tar.bz2
2006-10-23 Joel Sherrill <joel@OARcorp.com>
* cpu.c, rtems/score/cpu.h: Use the default IDLE thread body.
Diffstat (limited to 'cpukit/score/cpu/bfin/cpu.c')
-rw-r--r--cpukit/score/cpu/bfin/cpu.c28
1 files changed, 0 insertions, 28 deletions
diff --git a/cpukit/score/cpu/bfin/cpu.c b/cpukit/score/cpu/bfin/cpu.c
index aa52e0e10b..e103c34844 100644
--- a/cpukit/score/cpu/bfin/cpu.c
+++ b/cpukit/score/cpu/bfin/cpu.c
@@ -195,31 +195,3 @@ void _CPU_Context_Initialize(
void _CPU_Install_interrupt_stack( void )
{
}
-
-/*PAGE
- *
- * _CPU_Thread_Idle_body
- *
- * NOTES:
- *
- * 1. This is the same as the regular CPU independent algorithm.
- *
- * 2. If you implement this using a "halt", "idle", or "shutdown"
- * instruction, then don't forget to put it in an infinite loop.
- *
- * 3. Be warned. Some processors with onboard DMA have been known
- * to stop the DMA if the CPU were put in IDLE mode. This might
- * also be a problem with other on-chip peripherals. So use this
- * hook with caution.
- *
- * NO_CPU Specific Information:
- *
- * XXX document implementation including references if appropriate
- */
-
-void _CPU_Thread_Idle_body( void )
-{
-
- for( ; ; )
- /* insert your "halt" instruction here */ ;
-}