Skip to content
Snippets Groups Projects
Commit 8f6d6392 authored by wlott's avatar wlott
Browse files

Changed exception stuff back to signal stuff in the mutator structure.

parent 8bd9700a
No related branches found
No related tags found
No related merge requests found
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
;;; Scott Fahlman or slisp-group@cs.cmu.edu. ;;; Scott Fahlman or slisp-group@cs.cmu.edu.
;;; ;;;
(ext:file-comment (ext:file-comment
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/generic/objdef.lisp,v 1.32 1993/05/18 19:18:28 wlott Exp $") "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/generic/objdef.lisp,v 1.33 1993/08/27 14:29:09 wlott Exp $")
;;; ;;;
;;; ********************************************************************** ;;; **********************************************************************
;;; ;;;
...@@ -392,8 +392,11 @@ ...@@ -392,8 +392,11 @@
(thread) (thread)
;; Signal control magic. ;; Signal control magic.
(foreign-fn-call-active :c-type "boolean") (foreign-fn-call-active :c-type "boolean")
(suspends-disabled-count :c-type "int") (interrupts_enabled :c-type "boolean")
(suspend-pending :c-type "boolean") (interrupt_pending :c-type "boolean")
(pending_signal :c-type "int")
(pending_code :c-type "int")
(pending_mask :c-type "int")
;; Stacks. ;; Stacks.
(control-stack-base :c-type "lispobj *") (control-stack-base :c-type "lispobj *")
(control-stack-pointer :c-type "lispobj *") (control-stack-pointer :c-type "lispobj *")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment