commit 7b1afb2a0c2b47ac92a203375128d0026ac67896 parent 3a60e19b5d96be737d66338c23f9a458f21c84f4 Author: hhvn <dev@hhvn.uk> Date: Fri, 9 Jul 2021 17:13:04 +0100 sfeed_curses.c: don't kill children on exit Diffstat:
M | sfeed_curses.c | | | 7 | ------- |
1 file changed, 0 insertions(+), 7 deletions(-)
diff --git a/sfeed_curses.c b/sfeed_curses.c @@ -474,8 +474,6 @@ clearscreen(void) void cleanup(void) { - struct sigaction sa; - if (!needcleanup) return; @@ -492,11 +490,6 @@ cleanup(void) resettitle(); - sigemptyset(&sa.sa_mask); - sa.sa_flags = SA_RESTART; /* require BSD signal semantics */ - sa.sa_handler = SIG_DFL; - sigaction(SIGWINCH, &sa, NULL); - needcleanup = 0; }