diff --git a/src/backend/postmaster/postmaster.c b/src/backend/postmaster/postmaster.c index 35b4ec8..b6f5632 100644 --- a/src/backend/postmaster/postmaster.c +++ b/src/backend/postmaster/postmaster.c @@ -4961,8 +4961,6 @@ sigusr1_handler(SIGNAL_ARGS) { int save_errno = errno; - PG_SETMASK(&BlockSig); - /* Process background worker state change. */ if (CheckPostmasterSignal(PMSIGNAL_BACKGROUND_WORKER_CHANGE)) { @@ -5095,8 +5093,6 @@ sigusr1_handler(SIGNAL_ARGS) signal_child(StartupPID, SIGUSR2); } - PG_SETMASK(&UnBlockSig); - errno = save_errno; }