* sysdeps/m68k/bits/setjmp.h (_JMPBUF_UNWINDS): Added.

This commit is contained in:
Andreas Schwab 1998-04-22 02:07:41 +00:00
parent 4ec52ed6cf
commit 91e4b2f65e
1 changed files with 5 additions and 0 deletions

View File

@ -39,3 +39,8 @@ typedef struct
#endif
} __jmp_buf[1];
/* Test if longjmp to JMPBUF would unwind the frame
containing a local variable at ADDRESS. */
#define _JMPBUF_UNWINDS(jmpbuf, address) \
((void *) (address) < (void *) (jmpbuf)->__sp)