📄 archsetjmp.h
字号:
/* * arch/alpha/include/klibc/archsetjmp.h */#ifndef _KLIBC_ARCHSETJMP_H#define _KLIBC_ARCHSETJMP_Hstruct __jmp_buf { unsigned long __s0; unsigned long __s1; unsigned long __s2; unsigned long __s3; unsigned long __s4; unsigned long __s5; unsigned long __fp; unsigned long __ra; unsigned long __gp; unsigned long __sp; unsigned long __f2; unsigned long __f3; unsigned long __f4; unsigned long __f5; unsigned long __f6; unsigned long __f7; unsigned long __f8; unsigned long __f9;};/* Must be an array so it will decay to a pointer when a function is called */typedef struct __jmp_buf jmp_buf[1];#endif /* _KLIBC_ARCHSETJMP_H */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -