⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 setjmp.h

📁 它通过提供glibc兼容使得应用程序移植到较小的c 库时相当得容易. 它能够应用到带虚拟存储的Linux和uClinux上.在大多数带MMU部件的平台上为使它更加紧凑,它也能够编译成共享库.uClib
💻 H
字号:
/* Define the machine-dependent type `jmp_buf'.  i960 version.  */#ifndef _SETJMP_H# error "Never include <bits/setjmp.h> directly; use <setjmp.h> instead."#endif/* * assume that every single local and global register * must be saved. * * ___SAVEREGS is the number of quads to save. * * Using the structure will guarantee quad-word alignment for the * jmp_buf type. */#define ___SAVEREGS 8typedef struct __jmp_buf__ {  long _q0;  long _q1;  long _q2;  long _q3;} __attribute__ ((aligned (16))) __jmp_buf[___SAVEREGS] ;/* I have not yet figured out what this should be for the i960... */#if 0/* Test if longjmp to JMPBUF would unwind the frame   containing a local variable at ADDRESS.  */#define _JMPBUF_UNWINDS(jmpbuf, address) \  ((void *) (address) < (jmpbuf)[0].__sp)#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -