summaryrefslogtreecommitdiff
path: root/src/backend/postmaster/Makefile
diff options
context:
space:
mode:
authorRobert Haas2013-07-16 17:02:15 +0000
committerRobert Haas2013-07-16 17:02:15 +0000
commit7f7485a0cde92aa4ba235a1ffe4dda0ca0b6cc9a (patch)
treed9a8776628552b886451703f2a8a56e137f678c8 /src/backend/postmaster/Makefile
parent233bfe06735411f08d231764dfd3a6fcf7aef9a3 (diff)
Allow background workers to be started dynamically.
There is a new API, RegisterDynamicBackgroundWorker, which allows an ordinary user backend to register a new background writer during normal running. This means that it's no longer necessary for all background workers to be registered during processing of shared_preload_libraries, although the option of registering workers at that time remains available. When a background worker exits and will not be restarted, the slot previously used by that background worker is automatically released and becomes available for reuse. Slots used by background workers that are configured for automatic restart can't (yet) be released without shutting down the system. This commit adds a new source file, bgworker.c, and moves some of the existing control logic for background workers there. Previously, there was little enough logic that it made sense to keep everything in postmaster.c, but not any more. This commit also makes the worker_spi contrib module into an extension and adds a new function, worker_spi_launch, which can be used to demonstrate the new facility.
Diffstat (limited to 'src/backend/postmaster/Makefile')
-rw-r--r--src/backend/postmaster/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/postmaster/Makefile b/src/backend/postmaster/Makefile
index 3056b09f0d1..71c23211b2a 100644
--- a/src/backend/postmaster/Makefile
+++ b/src/backend/postmaster/Makefile
@@ -12,7 +12,7 @@ subdir = src/backend/postmaster
top_builddir = ../../..
include $(top_builddir)/src/Makefile.global
-OBJS = autovacuum.o bgwriter.o fork_process.o pgarch.o pgstat.o postmaster.o \
- startup.o syslogger.o walwriter.o checkpointer.o
+OBJS = autovacuum.o bgworker.o bgwriter.o checkpointer.o fork_process.o \
+ pgarch.o pgstat.o postmaster.o startup.o syslogger.o walwriter.o
include $(top_srcdir)/src/backend/common.mk