Changeset 5b8b467 in rtems
- Timestamp:
- Oct 23, 2006, 5:19:52 PM (13 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, master
- Children:
- ffae7bd
- Parents:
- d9a6ab3
- Location:
- cpukit/score/cpu/bfin
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
cpukit/score/cpu/bfin/ChangeLog
rd9a6ab3 r5b8b467 1 2006-10-23 Joel Sherrill <joel@OARcorp.com> 2 3 * cpu.c, rtems/score/cpu.h: Use the default IDLE thread body. 4 1 5 2006-10-23 Joel Sherrill <joel@OARcorp.com> 2 6 -
cpukit/score/cpu/bfin/cpu.c
rd9a6ab3 r5b8b467 196 196 { 197 197 } 198 199 /*PAGE200 *201 * _CPU_Thread_Idle_body202 *203 * NOTES:204 *205 * 1. This is the same as the regular CPU independent algorithm.206 *207 * 2. If you implement this using a "halt", "idle", or "shutdown"208 * instruction, then don't forget to put it in an infinite loop.209 *210 * 3. Be warned. Some processors with onboard DMA have been known211 * to stop the DMA if the CPU were put in IDLE mode. This might212 * also be a problem with other on-chip peripherals. So use this213 * hook with caution.214 *215 * NO_CPU Specific Information:216 *217 * XXX document implementation including references if appropriate218 */219 220 void _CPU_Thread_Idle_body( void )221 {222 223 for( ; ; )224 /* insert your "halt" instruction here */ ;225 } -
cpukit/score/cpu/bfin/rtems/score/cpu.h
rd9a6ab3 r5b8b467 293 293 * XXX document implementation including references if appropriate 294 294 */ 295 #define CPU_PROVIDES_IDLE_THREAD_BODY TRUE295 #define CPU_PROVIDES_IDLE_THREAD_BODY FALSE 296 296 297 297 /**
Note: See TracChangeset
for help on using the changeset viewer.