diff options
Diffstat (limited to 'src/backend/postmaster/postmaster.c')
-rw-r--r-- | src/backend/postmaster/postmaster.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/backend/postmaster/postmaster.c b/src/backend/postmaster/postmaster.c index 68bb35ab791..a33a1311829 100644 --- a/src/backend/postmaster/postmaster.c +++ b/src/backend/postmaster/postmaster.c @@ -654,8 +654,12 @@ PostmasterMain(int argc, char *argv[]) * a standalone backend, their default handling is reasonable. Hence, all * child processes should just allow the inherited settings to stand. */ +#ifdef SIGTTIN pqsignal(SIGTTIN, SIG_IGN); /* ignored */ +#endif +#ifdef SIGTTOU pqsignal(SIGTTOU, SIG_IGN); /* ignored */ +#endif /* ignore SIGXFSZ, so that ulimit violations work like disk full */ #ifdef SIGXFSZ |