diff options
| author | Jordan K. Hubbard <jkh@FreeBSD.org> | 1996-08-16 07:53:29 +0000 |
|---|---|---|
| committer | Jordan K. Hubbard <jkh@FreeBSD.org> | 1996-08-16 07:53:29 +0000 |
| commit | 4ade2461ae8650d46f79f97e25df1cc1c66008b4 (patch) | |
| tree | 3e9af70324cca82a3dbab470fb8c89d07ff513fc /lib/libncurses | |
| parent | 8797d8597f61f8c6c450fbf853d013032b377cf6 (diff) | |
Notes
Diffstat (limited to 'lib/libncurses')
| -rw-r--r-- | lib/libncurses/lib_newterm.c | 6 |
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); |
