Skip to content

Commit d5d33e2

Browse files
committed
Another little 'must fix' for 6.5.2: someone removed HAVE_KILL
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.
1 parent 05a2759 commit d5d33e2

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/backend/commands/async.c

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
* Copyright (c) 1994, Regents of the University of California
77
*
88
* IDENTIFICATION
9-
* $Header: /cvsroot/pgsql/src/backend/commands/async.c,v 1.47.2.1 1999/08/02 05:56:57 scrappy Exp $
9+
* $Header: /cvsroot/pgsql/src/backend/commands/async.c,v 1.47.2.2 1999/09/14 22:33:35 tgl Exp $
1010
*
1111
*-------------------------------------------------------------------------
1212
*/
@@ -510,7 +510,6 @@ AtCommit_Notify()
510510
* signal first, because the other guy can't read
511511
* pg_listener until we unlock it.
512512
*/
513-
#ifdef HAVE_KILL
514513
if (kill(listenerPID, SIGUSR2) < 0)
515514
{
516515

@@ -526,7 +525,6 @@ AtCommit_Notify()
526525
heap_delete(lRel, &lTuple->t_self, NULL);
527526
}
528527
else
529-
#endif
530528
{
531529
d = heap_getattr(lTuple, Anum_pg_listener_notify,
532530
tdesc, &isnull);

0 commit comments

Comments
 (0)