summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Lane1999-09-14 22:33:35 +0000
committerTom Lane1999-09-14 22:33:35 +0000
commitd5d33e2ee453656d607ad6b1036f0091d29de25a (patch)
tree64905d267836e413ba5c22d19ea5f2d1b1694334
parent05a275926b95cef0c8844b45929940e11b24ea3b (diff)
Another little 'must fix' for 6.5.2: someone removed HAVE_KILLREL6_5_2
from the configuration symbols, but neglected to remove #ifdef HAVE_KILL from async.c in the REL6_5 branch. Result: cross-backend NOTIFY dead in the water.
-rw-r--r--src/backend/commands/async.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/backend/commands/async.c b/src/backend/commands/async.c
index 00016b0bca8..0874dc294af 100644
--- a/src/backend/commands/async.c
+++ b/src/backend/commands/async.c
@@ -6,7 +6,7 @@
* Copyright (c) 1994, Regents of the University of California
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/commands/async.c,v 1.47.2.1 1999/08/02 05:56:57 scrappy Exp $
+ * $Header: /cvsroot/pgsql/src/backend/commands/async.c,v 1.47.2.2 1999/09/14 22:33:35 tgl Exp $
*
*-------------------------------------------------------------------------
*/
@@ -510,7 +510,6 @@ AtCommit_Notify()
* signal first, because the other guy can't read
* pg_listener until we unlock it.
*/
-#ifdef HAVE_KILL
if (kill(listenerPID, SIGUSR2) < 0)
{
@@ -526,7 +525,6 @@ AtCommit_Notify()
heap_delete(lRel, &lTuple->t_self, NULL);
}
else
-#endif
{
d = heap_getattr(lTuple, Anum_pg_listener_notify,
tdesc, &isnull);