mirror of
https://github.com/zebrajr/postgres.git
synced 2025-12-07 12:20:31 +01:00
Fix over fix: JMP_BUF gone away and we have SIGJMP_BUF now.
Excuse me.
This commit is contained in:
parent
76fae39d02
commit
7441e1facb
|
|
@ -7,7 +7,7 @@
|
|||
*
|
||||
*
|
||||
* IDENTIFICATION
|
||||
* $Header: /cvsroot/pgsql/src/backend/utils/error/Attic/exc.c,v 1.6.2.1 1996/12/14 05:54:36 vadim Exp $
|
||||
* $Header: /cvsroot/pgsql/src/backend/utils/error/Attic/exc.c,v 1.6.2.2 1996/12/14 08:26:08 vadim Exp $
|
||||
*
|
||||
* NOTE
|
||||
* XXX this code needs improvement--check for state violations and
|
||||
|
|
@ -183,7 +183,7 @@ ExcRaise(Exception *excP,
|
|||
|
||||
ExcCurFrameP = efp->link;
|
||||
|
||||
#if defined (JMP_BUF)
|
||||
#if !defined (SIGJMP_BUF)
|
||||
longjmp(efp->context, 1);
|
||||
#else
|
||||
siglongjmp(efp->context, 1);
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user