summaryrefslogtreecommitdiff
path: root/src/backend
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2001-07-01 00:06:23 +0000
committerTom Lane <tgl@sss.pgh.pa.us>2001-07-01 00:06:23 +0000
commit109d50dd35db93a9d6c50bcbe2481518c3789829 (patch)
tree227347e5a48ec6a12f04efc1357cc5363c4ca1fa /src/backend
parent10e9cd22991b352685fe49cfa92dbcd72048c711 (diff)
downloadpostgresql-109d50dd35db93a9d6c50bcbe2481518c3789829.tar.gz
Under new theory of operation wherein postmaster forks children
immediately, we will fork a child even if the database state does not permit connections to be accepted (eg, we are in recovery mode). The child process will correctly reject the connection and exit as soon as it's finished collecting the connection request message. However, this means that reaper() must be prepared to see child process exit signals even while it's waiting for startup or shutdown process to finish. As was, a connection request arriving during a database recovery or shutdown would cause postmaster abort.
Diffstat (limited to 'src/backend')
-rw-r--r--src/backend/postmaster/postmaster.c25
1 files changed, 15 insertions, 10 deletions
diff --git a/src/backend/postmaster/postmaster.c b/src/backend/postmaster/postmaster.c
index 1f02bf73a3..0d92324623 100644
--- a/src/backend/postmaster/postmaster.c
+++ b/src/backend/postmaster/postmaster.c
@@ -37,7 +37,7 @@
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/postmaster/postmaster.c,v 1.229 2001/06/29 16:05:57 tgl Exp $
+ * $Header: /cvsroot/pgsql/src/backend/postmaster/postmaster.c,v 1.230 2001/07/01 00:06:23 tgl Exp $
*
* NOTES
*
@@ -1357,7 +1357,11 @@ pmdie(SIGNAL_ARGS)
return;
}
if (ShutdownPID > 0)
+ {
+ postmaster_error("Shutdown process %d already running",
+ ShutdownPID);
abort();
+ }
ShutdownPID = ShutdownDataBase();
errno = save_errno;
@@ -1409,7 +1413,11 @@ pmdie(SIGNAL_ARGS)
return;
}
if (ShutdownPID > 0)
+ {
+ postmaster_error("Shutdown process %d already running",
+ ShutdownPID);
abort();
+ }
ShutdownPID = ShutdownDataBase();
errno = save_errno;
@@ -1481,27 +1489,21 @@ reaper(SIGNAL_ARGS)
continue;
}
- if (ShutdownPID > 0)
+ if (ShutdownPID > 0 && pid == ShutdownPID)
{
- if (pid != ShutdownPID)
- abort();
if (exitstatus != 0)
{
postmaster_error("Shutdown proc %d exited with status %d", pid, exitstatus);
- fflush(stderr);
ExitPostmaster(1);
}
ExitPostmaster(0);
}
- if (StartupPID > 0)
+ if (StartupPID > 0 && pid == StartupPID)
{
- if (pid != StartupPID)
- abort();
if (exitstatus != 0)
{
postmaster_error("Startup proc %d exited with status %d - abort",
pid, exitstatus);
- fflush(stderr);
ExitPostmaster(1);
}
StartupPID = 0;
@@ -1509,7 +1511,11 @@ reaper(SIGNAL_ARGS)
if (Shutdown > NoShutdown)
{
if (ShutdownPID > 0)
+ {
+ postmaster_error("Shutdown process %d already running",
+ ShutdownPID);
abort();
+ }
ShutdownPID = ShutdownDataBase();
}
@@ -1533,7 +1539,6 @@ reaper(SIGNAL_ARGS)
if (FatalError)
{
-
/*
* Wait for all children exit, then reset shmem and
* StartupDataBase.