diff options
author | Marc G. Fournier <scrappy@hub.org> | 1997-01-24 23:48:32 +0000 |
---|---|---|
committer | Marc G. Fournier <scrappy@hub.org> | 1997-01-24 23:48:32 +0000 |
commit | 60265ee6513df64552701fbb4a329845441cfdba (patch) | |
tree | e075be59a61ad784bb4e10043f4d9558a9976c1f /src/backend/commands/async.c | |
parent | 970e3f69b7f414591d8e48145a1e1162b31e8044 (diff) | |
download | postgresql-60265ee6513df64552701fbb4a329845441cfdba.tar.gz postgresql-60265ee6513df64552701fbb4a329845441cfdba.zip |
Switch over NEED_RUSAGE to HAVE_RUSAGE for configure
Diffstat (limited to 'src/backend/commands/async.c')
-rw-r--r-- | src/backend/commands/async.c | 6 |
1 files changed, 3 insertions, 3 deletions
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); |