scsh-users
[Top] [All Lists]

Re: scsh

To: Alan Bawden <Bawden@cs.brandeis.edu>
Subject: Re: scsh
From: "Brian D. Carlstrom" <bdc@martigny.ai.mit.edu>
Date: Sun, 14 Feb 1999 09:30:33 -0800 (PST)
Cc: Julia Lawall <jll@cs.brandeis.edu>, scsh-bugs@martigny.ai.mit.edu
Reply-to: "Brian D. Carlstrom" <bdc@ai.mit.edu>
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.

<Prev in Thread] Current Thread [Next in Thread>