pgsql: Move some functions from postmaster.c to a new source file

Поиск
Список
Период
Сортировка
От Heikki Linnakangas
Тема pgsql: Move some functions from postmaster.c to a new source file
Дата
Msg-id E1rm9Tv-004QMl-V4@gemulon.postgresql.org
обсуждение исходный текст
Список pgsql-committers
Move some functions from postmaster.c to a new source file

This just moves the functions, with no other changes, to make the next
commits smaller and easier to review. The moved functions are related
to launching postmaster child processes in EXEC_BACKEND mode.

Reviewed-by: Tristan Partin, Andres Freund
Discussion: https://www.postgresql.org/message-id/7a59b073-5b5b-151e-7ed3-8b01ff7ce9ef@iki.fi

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/f1baed18bc3db50c72bfb00b6247b47689158445

Modified Files
--------------
src/backend/postmaster/Makefile         |   1 +
src/backend/postmaster/launch_backend.c | 811 ++++++++++++++++++++++++++++++++
src/backend/postmaster/meson.build      |   1 +
src/backend/postmaster/postmaster.c     | 752 +----------------------------
src/include/postmaster/postmaster.h     |   5 +
5 files changed, 828 insertions(+), 742 deletions(-)


В списке pgsql-committers по дате отправления:

Предыдущее
От: Michael Paquier
Дата:
Сообщение: pgsql: Remove references to backup_fs_hot() in Cluster.pm
Следующее
От: Peter Eisentraut
Дата:
Сообщение: pgsql: Add some const decorations