traps.h
来自「自己做的交叉编译工具!gcc-3.4.5,glibc-2.3.6在ubuntu8」· C头文件 代码 · 共 18 行
H
18 行
#ifndef _ASMARM_TRAP_H#define _ASMARM_TRAP_Hstruct undef_hook { struct list_head node; __u32 instr_mask; __u32 instr_val; __u32 cpsr_mask; __u32 cpsr_val; int (*fn)(struct pt_regs *regs, unsigned int instr);};void register_undef_hook(struct undef_hook *hook);void unregister_undef_hook(struct undef_hook *hook);#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?