jmpbuf-unwind.h 360 B

1234567891011
  1. /*
  2. * Copyright (C) 2000-2006 Erik Andersen <andersen@uclibc.org>
  3. *
  4. * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
  5. */
  6. #include <setjmp.h>
  7. /* Test if longjmp to JMPBUF would unwind the frame
  8. containing a local variable at ADDRESS. */
  9. #define _JMPBUF_UNWINDS(jmpbuf, address) \
  10. ((void *) (address) < (void *) (jmpbuf)->__sp)