mirror of
https://github.com/postgres/postgres.git
synced 2025-08-08 06:02:22 +03:00
Remove bgw_sighup and bgw_sigterm.
Per discussion on pgsql-hackers, these aren't really needed. Interim versions of the background worker patch had the worker starting with signals already unblocked, which would have made this necessary. But the final version does not, so we don't really need it; and it doesn't work well with the new facility for starting dynamic background workers, so just rip it out. Also per discussion on pgsql-hackers, back-patch this change to 9.3. It's best to get the API break out of the way before we do an official release of this facility, to avoid more pain for extension authors later.
This commit is contained in:
@@ -5434,16 +5434,8 @@ do_start_bgworker(void)
|
||||
pqsignal(SIGFPE, SIG_IGN);
|
||||
}
|
||||
|
||||
/* SIGTERM and SIGHUP are configurable */
|
||||
if (worker->bgw_sigterm)
|
||||
pqsignal(SIGTERM, worker->bgw_sigterm);
|
||||
else
|
||||
pqsignal(SIGTERM, bgworker_die);
|
||||
|
||||
if (worker->bgw_sighup)
|
||||
pqsignal(SIGHUP, worker->bgw_sighup);
|
||||
else
|
||||
pqsignal(SIGHUP, SIG_IGN);
|
||||
pqsignal(SIGTERM, bgworker_die);
|
||||
pqsignal(SIGHUP, SIG_IGN);
|
||||
|
||||
pqsignal(SIGQUIT, bgworker_quickdie);
|
||||
InitializeTimeouts(); /* establishes SIGALRM handler */
|
||||
|
@@ -53,7 +53,6 @@
|
||||
|
||||
|
||||
typedef void (*bgworker_main_type) (void *main_arg);
|
||||
typedef void (*bgworker_sighdlr_type) (SIGNAL_ARGS);
|
||||
|
||||
/*
|
||||
* Points in time at which a bgworker can request to be started
|
||||
@@ -76,8 +75,6 @@ typedef struct BackgroundWorker
|
||||
int bgw_restart_time; /* in seconds, or BGW_NEVER_RESTART */
|
||||
bgworker_main_type bgw_main;
|
||||
void *bgw_main_arg;
|
||||
bgworker_sighdlr_type bgw_sighup;
|
||||
bgworker_sighdlr_type bgw_sigterm;
|
||||
} BackgroundWorker;
|
||||
|
||||
/* Register a new bgworker */
|
||||
|
Reference in New Issue
Block a user