From 60265ee6513df64552701fbb4a329845441cfdba Mon Sep 17 00:00:00 2001 From: "Marc G. Fournier" Date: Fri, 24 Jan 1997 23:48:32 +0000 Subject: Switch over NEED_RUSAGE to HAVE_RUSAGE for configure --- src/backend/commands/async.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/backend/commands/async.c') diff --git a/src/backend/commands/async.c b/src/backend/commands/async.c index 94ea0a00f25..328b3286445 100644 --- a/src/backend/commands/async.c +++ b/src/backend/commands/async.c @@ -7,7 +7,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/commands/async.c,v 1.11 1997/01/08 08:31:07 bryanh Exp $ + * $Header: /cvsroot/pgsql/src/backend/commands/async.c,v 1.12 1997/01/24 23:48:25 scrappy Exp $ * *------------------------------------------------------------------------- */ @@ -290,13 +290,13 @@ Async_NotifyAtCommit() #ifdef ASYNC_DEBUG elog(DEBUG, "Notifying others"); #endif -#ifndef win32 +#ifdef HAVE_KILL if (kill(DatumGetInt32(d), SIGUSR2) < 0) { if (errno == ESRCH) { heap_delete(lRel, &lTuple->t_ctid); } } -#endif /* win32 */ +#endif } } ReleaseBuffer(b); -- cgit v1.2.3