archsetjmp.h

来自「klibc精简化的c程序库」· C头文件 代码 · 共 34 行

H
34
字号
/* * 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 + =
减小字号Ctrl + -
显示快捷键?