1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-28 23:42:10 +03:00

Prevents possible packet loss from SIGCHLD.

This commit is contained in:
Bruce Momjian
1996-09-26 03:17:44 +00:00
parent a38b0f6cb9
commit deaaecdf2e

View File

@ -10,7 +10,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/postmaster/postmaster.c,v 1.7 1996/09/16 05:40:31 scrappy Exp $ * $Header: /cvsroot/pgsql/src/backend/postmaster/postmaster.c,v 1.8 1996/09/26 03:17:44 momjian Exp $
* *
* NOTES * NOTES
* *
@ -435,6 +435,7 @@ ServerLoop()
fprintf(stderr, "%s: ServerLoop: select failed\n", fprintf(stderr, "%s: ServerLoop: select failed\n",
progname); progname);
return(STATUS_ERROR); return(STATUS_ERROR);
}
/* [TRH] /* [TRH]
* To avoid race conditions, block SIGCHLD signals while we are * To avoid race conditions, block SIGCHLD signals while we are
* handling the request. (both reaper() and ConnCreate() * handling the request. (both reaper() and ConnCreate()
@ -443,8 +444,6 @@ ServerLoop()
*/ */
sigprocmask(SIG_BLOCK, &newsigmask, &oldsigmask); sigprocmask(SIG_BLOCK, &newsigmask, &oldsigmask);
/* sigblock(sigmask(SIGCHLD)); */ /* XXX[TRH] portability */ /* sigblock(sigmask(SIGCHLD)); */ /* XXX[TRH] portability */
}
if (DebugLvl > 1) { if (DebugLvl > 1) {
fprintf(stderr, "%s: ServerLoop: %d sockets pending\n", fprintf(stderr, "%s: ServerLoop: %d sockets pending\n",
progname, nSelected); progname, nSelected);