aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJordan K. Hubbard <jkh@FreeBSD.org>1996-08-16 07:53:29 +0000
committerJordan K. Hubbard <jkh@FreeBSD.org>1996-08-16 07:53:29 +0000
commit4ade2461ae8650d46f79f97e25df1cc1c66008b4 (patch)
tree3e9af70324cca82a3dbab470fb8c89d07ff513fc
parent8797d8597f61f8c6c450fbf853d013032b377cf6 (diff)
Notes
-rw-r--r--lib/libncurses/lib_newterm.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libncurses/lib_newterm.c b/lib/libncurses/lib_newterm.c
index 24808e06d20d..95ef1eb79dff 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);