mirror of
https://github.com/postgres/postgres.git
synced 2026-04-28 01:26:56 -04:00
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
18 lines
341 B
Meson
18 lines
341 B
Meson
# Copyright (c) 2022-2024, PostgreSQL Global Development Group
|
|
|
|
backend_sources += files(
|
|
'autovacuum.c',
|
|
'auxprocess.c',
|
|
'bgworker.c',
|
|
'bgwriter.c',
|
|
'checkpointer.c',
|
|
'fork_process.c',
|
|
'interrupt.c',
|
|
'launch_backend.c',
|
|
'pgarch.c',
|
|
'postmaster.c',
|
|
'startup.c',
|
|
'syslogger.c',
|
|
'walsummarizer.c',
|
|
'walwriter.c',
|
|
)
|