📄 guest_access.h
字号:
/****************************************************************************** * guest_access.h * * Copyright (x) 2006, K A Fraser */#ifndef __XEN_GUEST_ACCESS_H__#define __XEN_GUEST_ACCESS_H__#include <asm/guest_access.h>#define copy_to_guest(hnd, ptr, nr) \ copy_to_guest_offset(hnd, 0, ptr, nr)#define copy_from_guest(ptr, hnd, nr) \ copy_from_guest_offset(ptr, hnd, 0, nr)#define __copy_to_guest(hnd, ptr, nr) \ __copy_to_guest_offset(hnd, 0, ptr, nr)#define __copy_from_guest(ptr, hnd, nr) \ __copy_from_guest_offset(ptr, hnd, 0, nr)#endif /* __XEN_GUEST_ACCESS_H__ */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -