idle.h 275 字节
Newer Older
V
Vegard Nossum 已提交
1 2
#ifndef ASM_X86__IDLE_H
#define ASM_X86__IDLE_H
A
Andi Kleen 已提交
3 4 5 6 7 8 9 10 11 12

#define IDLE_START 1
#define IDLE_END 2

struct notifier_block;
void idle_notifier_register(struct notifier_block *n);

void enter_idle(void);
void exit_idle(void);

13 14
void c1e_remove_cpu(int cpu);

V
Vegard Nossum 已提交
15
#endif /* ASM_X86__IDLE_H */