idle.h 287 B

1234567891011121314
  1. #ifndef _ASM_X86_64_IDLE_H
  2. #define _ASM_X86_64_IDLE_H 1
  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. #endif