1
0
mirror of https://github.com/postgres/postgres.git synced 2025-06-27 23:21:58 +03:00

Switch over NEED_RUSAGE to HAVE_RUSAGE for configure

This commit is contained in:
Marc G. Fournier
1997-01-24 23:48:32 +00:00
parent 970e3f69b7
commit 60265ee651
3 changed files with 11 additions and 10 deletions

View File

@ -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);