File: posixjmp.h

package info (click to toggle)
mysql 3.21.33b-2
  • links: PTS
  • area: non-free
  • in suites: slink
  • size: 17,816 kB
  • ctags: 19,275
  • sloc: ansic: 87,975; cpp: 40,466; perl: 18,464; sh: 3,921; asm: 2,465; yacc: 1,519; makefile: 1,121
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_ */