This commit is contained in:
ridiculousfish 2012-08-15 17:26:54 -07:00
parent c5ffe8a974
commit a9b119833a

View file

@ -635,10 +635,10 @@ void get_signals_with_handlers(sigset_t *set)
{
/* Don't include SIGTTIN or SIGTTOU until we figure out how to set the controlling terminal in POSIX_SPAWN */
#ifdef SIGTTIN
if (i == SIGTTIN) continue;
if (lookup[i].signal == SIGTTIN) continue;
#endif
#ifdef SIGTTOU
if (i == SIGTTOU) continue;
if (lookup[i].signal == SIGTTOU) continue;
#endif
struct sigaction act = {};