Alan Bawden writes:
> Looks like an Irix-specific bug in scsh (0.5).
> GDB claims the scsh process is getting a SIGWINCH!
Check scsh-0.5.1/scsh/irix/signals.scm against /usr/include/signals.h.
Specifically check these ones. It's possible they changed between irix
versions or that they were just cut and paste and never fixed up right.
The signals-ignored-by-default (which includes SIGWINCH) has a comment
about BSD so it wouldn't surprise me if it is all wrong.
-bri
(stop 17) ; sendable stop signal not from tty
(tstp 18) ; stop signal from tty
(winch 28) ; window changed
(define signals-ignored-by-default
(list signal/chld signal/cont ; These are Posix.
signal/info signal/io signal/urg signal/winch)) ; These are BSD.
|