projects
/
postgresql.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
76fae39
)
Fix over fix: JMP_BUF gone away and we have SIGJMP_BUF now.
author
Vadim B. Mikheev
<
[email protected]
>
Sat, 14 Dec 1996 08:26:08 +0000
(08:26 +0000)
committer
Vadim B. Mikheev
<
[email protected]
>
Sat, 14 Dec 1996 08:26:08 +0000
(08:26 +0000)
Excuse me.
src/backend/utils/error/exc.c
patch
|
blob
|
blame
|
history
diff --git
a/src/backend/utils/error/exc.c
b/src/backend/utils/error/exc.c
index 4721ad5cc424272bafb30fa98744d9b0160517fc..61b67cb91d88c5680eb66fed9ce6bbb909fed5b5 100644
(file)
--- a/
src/backend/utils/error/exc.c
+++ b/
src/backend/utils/error/exc.c
@@
-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 (SIG
JMP_BUF)
longjmp(efp->context, 1);
#else
siglongjmp(efp->context, 1);