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

📄 mmu_context.h

📁 xen虚拟机源代码安装包
💻 H
字号:
#ifndef __ASM_MMU_CONTEXT_H#define __ASM_MMU_CONTEXT_H//dummy file to resolve non-arch-indep include#ifdef XEN#define IA64_REGION_ID_KERNEL 0#define XEN_IA64_REGION_ID_EFI 1#define ia64_rid(ctx,addr)	(((ctx) << 3) | (addr >> 61))#ifndef __ASSEMBLY__struct ia64_ctx {	spinlock_t lock;	unsigned int next;	/* next context number to use */	unsigned int limit;	/* next >= limit => must call wrap_mmu_context() */	unsigned int max_ctx;	/* max. context value supported by all CPUs */};extern struct ia64_ctx ia64_ctx;#endif /* ! __ASSEMBLY__ */#endif#endif /* ! __ASM_MMU_CONTEXT_H */

⌨️ 快捷键说明

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