1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-12-24 17:51:17 +03:00
1998-05-07  Ulrich Drepper  <drepper@cygnus.com>

	* sysdeps/powerpc/bits/setjmp.h (_JMPBUF_UNWINDS): Define.
	Patch by Matt McLean <keys@brio.yikes.com>.
This commit is contained in:
Ulrich Drepper
1998-05-07 21:24:52 +00:00
parent ae9b308c6a
commit ebcd12d4f1
3 changed files with 56 additions and 9 deletions

View File

@@ -39,3 +39,8 @@
#ifndef _ASM
typedef long int __jmp_buf[58];
#endif
/* Test if longjmp to JMPBUF would unwind the frame
containing a local variable at ADDRESS. */
#define _JMPBUF_UNWINDS(jmpbuf, address) \
((void *) (address) < (void *) (jmpbuf)[JB_GPR1])