Commit 290d3b51 authored by Vadim B. Mikheev's avatar Vadim B. Mikheev

Fix over fix: JMP_BUF gone away and we have SIGJMP_BUF now.

Excuse me.
parent cbb13157
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/utils/error/Attic/exc.c,v 1.7 1996/12/14 05:55:27 vadim Exp $ * $Header: /cvsroot/pgsql/src/backend/utils/error/Attic/exc.c,v 1.8 1996/12/14 08:26:34 vadim Exp $
* *
* NOTE * NOTE
* XXX this code needs improvement--check for state violations and * XXX this code needs improvement--check for state violations and
...@@ -183,7 +183,7 @@ ExcRaise(Exception *excP, ...@@ -183,7 +183,7 @@ ExcRaise(Exception *excP,
ExcCurFrameP = efp->link; ExcCurFrameP = efp->link;
#if defined (JMP_BUF) #if !defined (SIGJMP_BUF)
longjmp(efp->context, 1); longjmp(efp->context, 1);
#else #else
siglongjmp(efp->context, 1); siglongjmp(efp->context, 1);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment