diff options
author | Stan Shebs <shebs@codesourcery.com> | 1999-04-16 01:34:55 +0000 |
---|---|---|
committer | Stan Shebs <shebs@codesourcery.com> | 1999-04-16 01:34:55 +0000 |
commit | d60d9f651ab04df95fcd31488fbb46be263382ae (patch) | |
tree | e3dca903583e6c52788d623f4d3f5f31e2726dd3 /readline/posixjmp.h | |
download | binutils-gdb-d60d9f651ab04df95fcd31488fbb46be263382ae.tar.gz |
Initial creation of sourceware repository
Diffstat (limited to 'readline/posixjmp.h')
-rw-r--r-- | readline/posixjmp.h | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/readline/posixjmp.h b/readline/posixjmp.h new file mode 100644 index 00000000000..8703d17e9fb --- /dev/null +++ b/readline/posixjmp.h @@ -0,0 +1,20 @@ +/* posixjmp.h -- wrapper for setjmp.h with changes for POSIX systems. */ + +#ifndef _POSIXJMP_H_ +#define _POSIXJMP_H_ + +#include <setjmp.h> + +/* This *must* be included *after* config.h */ + +#if defined (HAVE_POSIX_SIGSETJMP) +# define procenv_t sigjmp_buf +# undef setjmp +# define setjmp(x) sigsetjmp((x), 1) +# undef longjmp +# define longjmp(x, n) siglongjmp((x), (n)) +#else +# define procenv_t jmp_buf +#endif + +#endif /* _POSIXJMP_H_ */ |