[movitz-cvs] CVS update: movitz/losp/muerte/interrupt.lisp

Frode Vatvedt Fjeld ffjeld at common-lisp.net
Thu Apr 15 15:23:36 UTC 2004


Update of /project/movitz/cvsroot/movitz/losp/muerte
In directory common-lisp.net:/tmp/cvs-serv4090

Modified Files:
	interrupt.lisp 
Log Message:
Re-named the muerte:interrupt-handler accessor to muerte:exception-handler.

Date: Thu Apr 15 11:23:36 2004
Author: ffjeld

Index: movitz/losp/muerte/interrupt.lisp
diff -u movitz/losp/muerte/interrupt.lisp:1.5 movitz/losp/muerte/interrupt.lisp:1.6
--- movitz/losp/muerte/interrupt.lisp:1.5	Thu Apr 15 11:18:43 2004
+++ movitz/losp/muerte/interrupt.lisp	Thu Apr 15 11:23:36 2004
@@ -10,7 +10,7 @@
 ;;;; Author:        Frode Vatvedt Fjeld <frodef at acm.org>
 ;;;; Created at:    Wed Apr  7 01:50:03 2004
 ;;;;                
-;;;; $Id: interrupt.lisp,v 1.5 2004/04/15 15:18:43 ffjeld Exp $
+;;;; $Id: interrupt.lisp,v 1.6 2004/04/15 15:23:36 ffjeld Exp $
 ;;;;                
 ;;;;------------------------------------------------------------------
 
@@ -240,15 +240,14 @@
 	nil))))
 
 
-(defun interrupt-handler (n)
+(defun exception-handler (n)
   (let ((vector (load-global-constant interrupt-handlers)))
     (svref vector n)))
 
-(defun (setf interrupt-handler) (handler n)
+(defun (setf exception-handler) (handler n)
   (check-type handler function)
   (let ((vector (load-global-constant interrupt-handlers)))
     (setf (svref vector n) handler)))
-
 
 (defun cli ()
   (with-inline-assembly (:returns :nothing)





More information about the Movitz-cvs mailing list