00001 00038 #ifndef CPU_SLEEP_H_INCLUDED 00039 #define CPU_SLEEP_H_INCLUDED 00040 00050 static inline void cpu_enter_sleep(void) 00051 { 00052 /* 00053 * Make sure we (for now) return with interrupts enabled as if we had 00054 * gone to sleep and been waken by an interrupt. 00055 */ 00056 cpu_irq_enable(); 00057 } 00058 00060 00061 #endif /* CPU_SLEEP_H_INCLUDED */
1.6.3