diff options
Diffstat (limited to 'src/backend/utils/init/miscinit.c')
-rw-r--r-- | src/backend/utils/init/miscinit.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/backend/utils/init/miscinit.c b/src/backend/utils/init/miscinit.c index 734c66d4e84..e6550f99eec 100644 --- a/src/backend/utils/init/miscinit.c +++ b/src/backend/utils/init/miscinit.c @@ -118,6 +118,11 @@ InitPostmasterChild(void) /* We don't want the postmaster's proc_exit() handlers */ on_exit_reset(); + /* In EXEC_BACKEND case we will not have inherited BlockSig etc values */ +#ifdef EXEC_BACKEND + pqinitmask(); +#endif + /* Initialize process-local latch support */ InitializeLatchSupport(); MyLatch = &LocalLatchData; @@ -135,11 +140,6 @@ InitPostmasterChild(void) elog(FATAL, "setsid() failed: %m"); #endif - /* In EXEC_BACKEND case we will not have inherited BlockSig etc values */ -#ifdef EXEC_BACKEND - pqinitmask(); -#endif - /* * Every postmaster child process is expected to respond promptly to * SIGQUIT at all times. Therefore we centrally remove SIGQUIT from |