- Timestamp:
- 03/04/08 03:17:18 (9 months ago)
- Files:
-
- 1 modified
-
trunk/init/conditions.lisp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/init/conditions.lisp
r26 r30 1 1 ;; GSL errors 2 2 ;; Liam Healy Sat Mar 4 2006 - 18:33 3 ;; Time-stamp: <2008-0 2-19 22:20:37EST conditions.lisp>3 ;; Time-stamp: <2008-03-03 22:06:11EST conditions.lisp> 4 4 ;; $Id$ 5 5 … … 93 93 :gsl-line-number line)) 94 94 95 (cffi:foreign-funcall 96 "gsl_set_error_handler" 97 :pointer (cffi:callback gsl-error)) 95 (defun establish-handler () 96 (cffi:foreign-funcall 97 "gsl_set_error_handler" 98 :pointer (cffi:callback gsl-error))) 98 99 100 (establish-handler) 101 102 ;;; This insures that conditions will be signalled if GSLL is dumped 103 ;;; in save-lisp-and-die. 104 #+sbcl 105 (push #'establish-handler sb-ext:*init-hooks*) 99 106 100 107 (defmacro gsl-errorno-sm (keyword)
