From 8425e7babb91765a7e68a708bcafb51fc6983780 Mon Sep 17 00:00:00 2001 From: jkh Date: Fri, 16 Aug 1996 07:53:29 +0000 Subject: Go back to sigaction again now that Peter has found the problem. Mine was just a "let's move on" kinda fix, Peter's does it right. :) Submitted-by: peter --- lib/libncurses/lib_newterm.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'lib/libncurses') diff --git a/lib/libncurses/lib_newterm.c b/lib/libncurses/lib_newterm.c index 24808e0..95ef1eb 100644 --- a/lib/libncurses/lib_newterm.c +++ b/lib/libncurses/lib_newterm.c @@ -137,14 +137,14 @@ char *use_it = _ncurses_copyright; act.sa_flags = 0; sigaction(SIGTSTP, &act, NULL); act.sa_handler = cleanup; - sigemptyset(&act.sa_mask); - act.sa_flags = 0; sigaction(SIGINT, &act, NULL); sigaction(SIGTERM, &act, NULL); - signal(SIGWINCH, size_change); #if 0 sigaction(SIGSEGV, &act, NULL); #endif + act.sa_handler = size_change; + act.sa_flags = SA_RESTART; + sigaction(SIGWINCH, &act, NULL); /* this must restart read() */ if ((stdscr = newwin(lines - stolen, columns, topstolen, 0)) == NULL) return(NULL); -- cgit v1.1