File: posixjmp.h

package info (click to toggle)
bash 2.01.1-4.1
  • links: PTS
  • area: main
  • in suites: slink
  • size: 6,532 kB
  • ctags: 4,581
  • sloc: ansic: 48,831; sh: 6,626; yacc: 2,498; makefile: 2,244; perl: 1,676; asm: 48
file content (20 lines) | stat: -rw-r--r-- 436 bytes parent folder | download | duplicates (20)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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_ */