⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 mce.h

📁 xen虚拟机源代码安装包
💻 H
字号:
#include <xen/init.h>#include <asm/traps.h>/* Init functions */void amd_nonfatal_mcheck_init(struct cpuinfo_x86 *c);void amd_k7_mcheck_init(struct cpuinfo_x86 *c);void amd_k8_mcheck_init(struct cpuinfo_x86 *c);void amd_f10_mcheck_init(struct cpuinfo_x86 *c);void intel_p4_mcheck_init(struct cpuinfo_x86 *c);void intel_p5_mcheck_init(struct cpuinfo_x86 *c);void intel_p6_mcheck_init(struct cpuinfo_x86 *c);void winchip_mcheck_init(struct cpuinfo_x86 *c);/* Function pointer used in the handlers to collect additional information * provided by newer CPU families/models without the need to duplicate * the whole handler resulting in various handlers each with its own * tweaks and bugs */extern int (*mc_callback_bank_extended)(struct mc_info *mi,		uint16_t bank, uint64_t status);/* Helper functions used for collecting error telemetry */struct mc_info *x86_mcinfo_getptr(void);void x86_mcinfo_clear(struct mc_info *mi);int x86_mcinfo_add(struct mc_info *mi, void *mcinfo);void x86_mcinfo_dump(struct mc_info *mi);/* Global variables */extern int mce_disabled;extern unsigned int nr_mce_banks;

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -