mirror of git://sourceware.org/git/glibc.git
* sysdeps/m68k/bits/setjmp.h (_JMPBUF_UNWINDS): Added.
Wed Apr 22 11:06:09 1998 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de> * sysdeps/m68k/bits/setjmp.h (_JMPBUF_UNWINDS): Added.
This commit is contained in:
parent
01cad72266
commit
cf1b2c7b8c
|
|
@ -1,3 +1,7 @@
|
||||||
|
Wed Apr 22 11:06:09 1998 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
|
||||||
|
|
||||||
|
* sysdeps/m68k/bits/setjmp.h (_JMPBUF_UNWINDS): Added.
|
||||||
|
|
||||||
1998-04-21 21:49 Zack Weinberg <zack@rabi.phys.columbia.edu>
|
1998-04-21 21:49 Zack Weinberg <zack@rabi.phys.columbia.edu>
|
||||||
|
|
||||||
* misc/sys/cdefs.h: New macro __REDIRECT to support changing the
|
* misc/sys/cdefs.h: New macro __REDIRECT to support changing the
|
||||||
|
|
|
||||||
|
|
@ -39,3 +39,8 @@ typedef struct
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
} __jmp_buf[1];
|
} __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)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue