From 567fd96f2e60b7166dc01b1519ea60e7b747e76b Mon Sep 17 00:00:00 2001 From: ram <ram> Date: Wed, 30 Jan 1991 14:06:31 +0000 Subject: [PATCH] Called SET-FLOATING-POINT-MODES in REINIT in hopes that this will make float traps enabled in saved cores. --- code/lispinit.lisp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/code/lispinit.lisp b/code/lispinit.lisp index 05f0769fc..f185188ab 100644 --- a/code/lispinit.lisp +++ b/code/lispinit.lisp @@ -7,7 +7,7 @@ ;;; Scott Fahlman (FAHLMAN@CMUC). ;;; ********************************************************************** ;;; -;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/lispinit.lisp,v 1.17 1990/12/11 18:08:55 ram Exp $ +;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/lispinit.lisp,v 1.18 1991/01/30 14:06:31 ram Exp $ ;;; ;;; Initialization stuff for CMU Common Lisp, plus some other random functions ;;; that we don't have any better place for. @@ -559,6 +559,8 @@ (kernel::signal-init) (setf (alien-access (alien-value internal_errors_enabled)) t) (setf *already-maybe-gcing* nil)) + (set-floating-point-modes :traps '(:overflow :underflow :invalid + :divide-by-zero)) #+nil (mach:port_enable (mach:mach-task_self) *task-notify*) #+nil -- GitLab