1
0
mirror of https://github.com/postgres/postgres.git synced 2026-01-13 12:22:55 +03:00
Files
postgres/src/backend/postmaster/Makefile
Robert Haas 7dbfea3c45 Partially deduplicate interrupt handling for background processes.
Where possible, share signal handler code and main loop interrupt
checking. This saves quite a bit of code and should simplify
maintenance, too.

This commit intends not to change the way anything works, even
though that might allow more code to be unified. It does unify
a bunch of individual variables into a ShutdownRequestPending
flag that has is now used by a bunch of different process types,
though.

Patch by me, reviewed by Andres Freund and Daniel Gustafsson.

Discussion: http://postgr.es/m/CA+TgmoZwDk=BguVDVa+qdA6SBKef=PKbaKDQALTC_9qoz1mJqg@mail.gmail.com
2019-12-17 13:14:28 -05:00

30 lines
596 B
Makefile

#-------------------------------------------------------------------------
#
# Makefile--
# Makefile for src/backend/postmaster
#
# IDENTIFICATION
# src/backend/postmaster/Makefile
#
#-------------------------------------------------------------------------
subdir = src/backend/postmaster
top_builddir = ../../..
include $(top_builddir)/src/Makefile.global
OBJS = \
autovacuum.o \
bgworker.o \
bgwriter.o \
checkpointer.o \
fork_process.o \
interrupt.o \
pgarch.o \
pgstat.o \
postmaster.o \
startup.o \
syslogger.o \
walwriter.o
include $(top_srcdir)/src/backend/common.mk