diff options
author | Heikki Linnakangas | 2024-03-18 09:35:05 +0000 |
---|---|---|
committer | Heikki Linnakangas | 2024-03-18 09:35:05 +0000 |
commit | f1baed18bc3db50c72bfb00b6247b47689158445 (patch) | |
tree | 69d7b498fd15711b78ed96e7c0e03155f62db6b7 /src/backend/postmaster/Makefile | |
parent | 14cddee9cce349d4bf024316e014ccf891c39cef (diff) |
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/[email protected]
Diffstat (limited to 'src/backend/postmaster/Makefile')
-rw-r--r-- | src/backend/postmaster/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/backend/postmaster/Makefile b/src/backend/postmaster/Makefile index 367a46c6177..db08543d195 100644 --- a/src/backend/postmaster/Makefile +++ b/src/backend/postmaster/Makefile @@ -20,6 +20,7 @@ OBJS = \ checkpointer.o \ fork_process.o \ interrupt.o \ + launch_backend.o \ pgarch.o \ postmaster.o \ startup.o \ |