mirror of https://gitee.com/openkylin/linux.git
12 lines
208 B
C
12 lines
208 B
C
|
#ifdef CONFIG_X86_MCE
|
||
|
extern void mcheck_init(struct cpuinfo_x86 *c);
|
||
|
#else
|
||
|
#define mcheck_init(c) do {} while(0)
|
||
|
#endif
|
||
|
|
||
|
extern int mce_disabled;
|
||
|
|
||
|
extern void stop_mce(void);
|
||
|
extern void restart_mce(void);
|
||
|
|