about summary refs log tree commit diff
path: root/sysdeps/sparc/jmp_buf.h
diff options
context:
space:
mode:
Diffstat (limited to 'sysdeps/sparc/jmp_buf.h')
-rw-r--r--sysdeps/sparc/jmp_buf.h22
1 files changed, 12 insertions, 10 deletions
diff --git a/sysdeps/sparc/jmp_buf.h b/sysdeps/sparc/jmp_buf.h
index a5a592fd47..43bae1a496 100644
--- a/sysdeps/sparc/jmp_buf.h
+++ b/sysdeps/sparc/jmp_buf.h
@@ -1,14 +1,16 @@
 /* Define the machine-dependent type `jmp_buf'.  SPARC version.  */
 
-/* NOTE: The assembly code in __longjmp.S and setjmp.S knows the layout
-   of this structure.  You must hack the assembly code if you want to change
-   the order of the members.  */
+#if	defined (__USE_MISC) || defined (_ASM)
+#define	JB_SP	0
+#define	JB_FP	1
+#define	JB_PC	2
+#endif
 
-typedef struct
-  {
-    /* Return PC (register o7).  */
-    __ptr_t __pc;
+#ifndef	_ASM
+typedef int __jmp_buf[3];
+#endif
 
-    /* Saved FP.  */
-    __ptr_t __fp;
-  } __jmp_buf[1];
+/* Test if longjmp to JMPBUF would unwind the frame
+   containing a local variable at ADDRESS.  */
+#define _JMPBUF_UNWINDS(jmpbuf, address) \
+  ((int) (address) < (jmpbuf)[JB_SP])