pgsql: process startup: Separate out BootstrapModeMain from AuxiliaryPr - Mailing list pgsql-committers

From Andres Freund
Subject pgsql: process startup: Separate out BootstrapModeMain from AuxiliaryPr
Date
Msg-id E1mBj0b-0007aU-6h@gemulon.postgresql.org
Whole thread Raw
List pgsql-committers
process startup: Separate out BootstrapModeMain from AuxiliaryProcessMain.

There practically was no shared code between the two, once all the ifs are
removed. And it was quite confusing that aux processes weren't actually
started by the call to AuxiliaryProcessMain() in main().

There's more to do, AuxiliaryProcessMain() should move out of bootstrap.c, and
BootstrapModeMain() shouldn't use/be part of AuxProcType.

Author: Andres Freund <andres@anarazel.de>
Reviewed-By: Kyotaro Horiguchi <horikyota.ntt@gmail.com>
Reviewed-By: Robert Haas <robertmhaas@gmail.com>
Discussion: https://postgr.es/m/20210802164124.ufo5buo4apl6yuvs@alap3.anarazel.de

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/5aa4a9d2077fa902b4041245805082fec6be0648

Modified Files
--------------
src/backend/bootstrap/bootstrap.c   | 324 ++++++++++++++++++------------------
src/backend/main/main.c             |   2 +-
src/backend/postmaster/postmaster.c |  43 ++---
src/include/bootstrap/bootstrap.h   |   4 +-
4 files changed, 187 insertions(+), 186 deletions(-)


pgsql-committers by date:

Previous
From: Andrew Dunstan
Date:
Subject: Re: pgsql: Enable TAP tests of pg_receivewal for ZLIB on Windows, take thre
Next
From: Andres Freund
Date:
Subject: pgsql: process startup: Centralize pgwin32_signal_initialize() calls.