2008-10-23 05:26:29 +00:00
|
|
|
#ifndef _ASM_X86_IDLE_H
|
|
|
|
#define _ASM_X86_IDLE_H
|
2006-01-11 21:44:36 +00:00
|
|
|
|
|
|
|
#define IDLE_START 1
|
|
|
|
#define IDLE_END 2
|
|
|
|
|
|
|
|
struct notifier_block;
|
|
|
|
void idle_notifier_register(struct notifier_block *n);
|
2008-10-09 18:45:22 +00:00
|
|
|
void idle_notifier_unregister(struct notifier_block *n);
|
2006-01-11 21:44:36 +00:00
|
|
|
|
|
|
|
void enter_idle(void);
|
|
|
|
void exit_idle(void);
|
|
|
|
|
2008-09-22 16:54:29 +00:00
|
|
|
void c1e_remove_cpu(int cpu);
|
|
|
|
|
2008-10-23 05:26:29 +00:00
|
|
|
#endif /* _ASM_X86_IDLE_H */
|