missing "else" in postmaster.c? - Mailing list pgsql-hackers

From Robert Haas
Subject missing "else" in postmaster.c?
Date
Msg-id AANLkTimK-d9vEBxzqzaFtwTMaZdM1ZkNU9tfP2ExhX3N@mail.gmail.com
Whole thread Raw
Responses Re: missing "else" in postmaster.c?  (Alvaro Herrera <alvherre@commandprompt.com>)
List pgsql-hackers
In pmdie(), we have the following code, which doesn't seem to make
much sense.  If the state is PM_RECOVERY at the top of this section it
will get changed to PM_WAIT_BACKENDS and then to PM_WAIT_BACKENDS
again.  Either the two "if" statements should be merged (and both bits
should be handled with the same block of code) or the second one
should say "else if".  Or at least, I think so...
           if (pmState == PM_RECOVERY)           {               /* only bgwriter is active in this state */
  pmState = PM_WAIT_BACKENDS;           }           if (pmState == PM_RUN ||               pmState == PM_WAIT_BACKUP ||
             pmState == PM_WAIT_READONLY ||               pmState == PM_WAIT_BACKENDS ||               pmState ==
PM_HOT_STANDBY)          {               ereport(LOG,                       (errmsg("aborting any active
transactions")));              /* shut down all backends and autovac workers */
SignalSomeChildren(SIGTERM,                               BACKEND_TYPE_NORMAL |
 
BACKEND_TYPE_AUTOVAC);                /* and the autovac launcher too
*/               if (AutoVacPID != 0)                   signal_child(AutoVacPID, SIGTERM);               /* and the
walwritertoo */               if (WalWriterPID != 0)                   signal_child(WalWriterPID, SIGTERM);
 pmState = PM_WAIT_BACKENDS;           }
 

-- 
Robert Haas
EnterpriseDB: http://www.enterprisedb.com
The Enterprise Postgres Company


pgsql-hackers by date:

Previous
From: Robert Haas
Date:
Subject: Re: Explicit psqlrc
Next
From: Andrew Dunstan
Date:
Subject: Re: extensible enum types