pgsql: Move some functions from postmaster.c to a new source file - Mailing list pgsql-committers

From Heikki Linnakangas
Subject pgsql: Move some functions from postmaster.c to a new source file
Date
Msg-id E1rm9Tv-004QMl-V4@gemulon.postgresql.org
Whole thread Raw
List 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 by date:

Previous
From: Michael Paquier
Date:
Subject: pgsql: Remove references to backup_fs_hot() in Cluster.pm
Next
From: Peter Eisentraut
Date:
Subject: pgsql: Add some const decorations