idle.h 332 B

12345678910111213141516
  1. #ifndef _ASM_X86_IDLE_H
  2. #define _ASM_X86_IDLE_H
  3. #define IDLE_START 1
  4. #define IDLE_END 2
  5. struct notifier_block;
  6. void idle_notifier_register(struct notifier_block *n);
  7. void idle_notifier_unregister(struct notifier_block *n);
  8. void enter_idle(void);
  9. void exit_idle(void);
  10. void c1e_remove_cpu(int cpu);
  11. #endif /* _ASM_X86_IDLE_H */