posixjmp.h
上传用户:tsgydb
上传日期:2007-04-14
资源大小:10674k
文件大小:0k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /* posixjmp.h -- wrapper for setjmp.h with changes for POSIX systems. */
  2. #ifndef _POSIXJMP_H_
  3. #define _POSIXJMP_H_
  4. #include <setjmp.h>
  5. /* This *must* be included *after* config.h */
  6. #if defined (HAVE_POSIX_SIGSETJMP)
  7. #  define procenv_t sigjmp_buf
  8. #  if !defined (__OPENNT)
  9. #    undef setjmp
  10. #    define setjmp(x) sigsetjmp((x), 1)
  11. #    undef longjmp
  12. #    define longjmp(x, n) siglongjmp((x), (n))
  13. #  endif /* !__OPENNT */
  14. #else
  15. #  define procenv_t jmp_buf
  16. #endif
  17. #endif /* _POSIXJMP_H_ */