pgsql: process startup: Separate out BootstrapModeMain from AuxiliaryPr

Поиск
Список
Период
Сортировка
От Andres Freund
Тема pgsql: process startup: Separate out BootstrapModeMain from AuxiliaryPr
Дата
Msg-id E1mBj0b-0007aU-6h@gemulon.postgresql.org
обсуждение исходный текст
Список 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 по дате отправления:

Предыдущее
От: Andrew Dunstan
Дата:
Сообщение: Re: pgsql: Enable TAP tests of pg_receivewal for ZLIB on Windows, take thre
Следующее
От: Andres Freund
Дата:
Сообщение: pgsql: process startup: Centralize pgwin32_signal_initialize() calls.