multicall.h
来自「xen虚拟机源代码安装包」· C头文件 代码 · 共 32 行
H
32 行
#ifndef __ASM_IA64_MULTICALL_H__#define __ASM_IA64_MULTICALL_H__#include <public/xen.h>#include <xen/errno.h>extern unsigned long ia64_do_multicall_call( unsigned long arg0, unsigned long arg1, unsigned long arg2, unsigned long arg3, unsigned long arg4, unsigned long arg5, unsigned long op);static inline void do_multicall_call(multicall_entry_t *call){ if (call->op < NR_hypercalls) call->result = ia64_do_multicall_call( call->args[0], call->args[1], call->args[2], call->args[3], call->args[4], call->args[5], call->op); else call->result = -ENOSYS;}#endif /* __ASM_IA64_MULTICALL_H__ */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?