this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Pass along SIGTTOU actions to Linux as well

This fixes `zsh` because Linux allows `tcsetpgrp` to succeed when ignoring `SIGTTOU`.

+1 -1
+1 -1
src/kernel/emulation/linux/signal/sigaction.c
··· 45 45 return 0; 46 46 } 47 47 48 - if (nsa != NULL && linux_signum == LINUX_SIGCHLD) 48 + if (nsa != NULL && (linux_signum == LINUX_SIGCHLD || linux_signum == LINUX_SIGTTOU)) 49 49 { 50 50 sa_tramp = nsa->sa_tramp; 51 51 if (nsa->sa_sigaction != SIG_DFL && nsa->sa_sigaction != SIG_IGN