fixed signals-ignored-by-default for ultrix irix

This commit is contained in:
bdc 1996-11-08 20:42:30 +00:00
parent d4219d0d69
commit 02dd0ebf8d
4 changed files with 26 additions and 11 deletions

View File

@ -93,7 +93,10 @@ Makefile.in needs to rerun ranlib after installing libscshvm.a
Reported by Robert E. Brown. Fix by bdc 4 Nov 96 Reported by Robert E. Brown. Fix by bdc 4 Nov 96
signals-ignored-by-default for ultrix signals-ignored-by-default for ultrix
Reported by Jay Nietling. Fix by ?????????? Reported by Jay Nietling. Fix by bdc 4 Nov 96
signals-ignored-by-default for irix
Reported by Richard Kelsey. Fix by bdc 4 Nov 96
Starting up programs with the "-e <entry-point>" command-line Starting up programs with the "-e <entry-point>" command-line
switch and with the (DUMP-SCSH-PROGRAM <file-name> <entry-point>) switch and with the (DUMP-SCSH-PROGRAM <file-name> <entry-point>)

19
RELEASE
View File

@ -178,15 +178,16 @@ We even have one of those URL things:
* Thanks * Thanks
======== ========
We would like to thank Michael Becker, Glenn Barry, Travis Broughton, Robert We would like to thank Michael Becker, Glenn Barry, Travis Broughton,
E. Brown, Charlie Conklin, Franklin Chen, Jin S. Choi, Douglas S. J. De Couto, Robert E. Brown, Charlie Conklin, Franklin Chen, Jin S. Choi, Douglas
Brian F. Dennis, Sean Doran, Kevin Esler, Lutz Euler, Lewis Girod, Dan S. J. De Couto, Brian F. Dennis, Sean Doran, Kevin Esler, Lutz Euler,
Hagerty, Rolf-Thomas Happe, David Hull, Steven L. Jenkins, Patrick May, Jay Lewis Girod, Dan Hagerty, Rolf-Thomas Happe, David Hull, Steven L.
Nietling, Tod Olson, Michel Schinz, Cotton Seed, Bill Sommerfeld, Michael Jenkins, Patrick May, Richard Kelsey, Jay Nietling, Tod Olson,
Sperber, Steven L. Tamm, Ed Tobin, Victor Zandy, and others for bug reports, Jonathan Rees, Michel Schinz, Cotton Seed, Bill Sommerfeld, Michael
bug fixes, and comments that were incorporated into this release. We really Sperber, Steven L. Tamm, Ed Tobin, Victor Zandy, and others for bug
appreciate their help, particularly in the task of porting scsh to new reports, bug fixes, and comments that were incorporated into this
platforms. release. We really appreciate their help, particularly in the task of
porting scsh to new platforms.
We'd like to thank everyone else for their patience; this release seemed like We'd like to thank everyone else for their patience; this release seemed like
a long time coming. a long time coming.

View File

@ -41,3 +41,7 @@
(xcpu 31) ; Cpu time limit exceeded (xcpu 31) ; Cpu time limit exceeded
(xfsz 32) ; Filesize limit exceeded (xfsz 32) ; Filesize limit exceeded
) )
(define signals-ignored-by-default
(list signal/chld signal/cont ; These are Posix.
signal/pwr signal/poll signal/urg signal/winch)) ; These are Irix.

View File

@ -1,4 +1,4 @@
;;; Signal constant definitions for "generic" ;;; Signal constant definitions for Ultrix
;;; Copyright (c) 1994 by Olin Shivers. ;;; Copyright (c) 1994 by Olin Shivers.
;;; Copyright (c) 1994 by Brian D. Carlstrom. ;;; Copyright (c) 1994 by Brian D. Carlstrom.
@ -16,6 +16,9 @@
(emt 7) ; EMT instruction (emt 7) ; EMT instruction
(fpe 8) ; floating point exception (fpe 8) ; floating point exception
(kill 9) ; kill (cannot be caught or ignored) (kill 9) ; kill (cannot be caught or ignored)
;; Ultrix
(bus 10)
;; POSIX
(segv 11) ; segmentation violation (segv 11) ; segmentation violation
(sys 12) ; bad argument to system call (sys 12) ; bad argument to system call
(pipe 13) ; write on a pipe with no one to read it (pipe 13) ; write on a pipe with no one to read it
@ -41,3 +44,7 @@
(usr1 30) ; user defined signal 1 (usr1 30) ; user defined signal 1
(usr2 31) ; user defined signal 2 (usr2 31) ; user defined signal 2
) )
(define signals-ignored-by-default
(list signal/cont signal/chld
signal/urg signal/io signal/winch))