aboutsummaryrefslogtreecommitdiff
path: root/readline/posixjmp.h
diff options
context:
space:
mode:
authorStan Shebs <shebs@codesourcery.com>1999-04-16 01:34:55 +0000
committerStan Shebs <shebs@codesourcery.com>1999-04-16 01:34:55 +0000
commitd60d9f651ab04df95fcd31488fbb46be263382ae (patch)
treee3dca903583e6c52788d623f4d3f5f31e2726dd3 /readline/posixjmp.h
downloadfsf-binutils-gdb-d60d9f651ab04df95fcd31488fbb46be263382ae.zip
fsf-binutils-gdb-d60d9f651ab04df95fcd31488fbb46be263382ae.tar.gz
fsf-binutils-gdb-d60d9f651ab04df95fcd31488fbb46be263382ae.tar.bz2
Initial creation of sourceware repository
Diffstat (limited to 'readline/posixjmp.h')
-rw-r--r--readline/posixjmp.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/readline/posixjmp.h b/readline/posixjmp.h
new file mode 100644
index 0000000..8703d17
--- /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_ */