1.0.25.11: Remove unused SIZE slot from catch-block structure.
[sbcl.git] / src / compiler / generic / parms.lisp
index 95fae73..df1f733 100644 (file)
@@ -44,6 +44,8 @@
     *current-catch-block*
     *current-unwind-protect-block*
 
+    #!+hpux *c-lra*
+
     ;; stack pointers
     *binding-stack-start*
     *control-stack-start*
@@ -52,6 +54,7 @@
     ;; interrupt handling
     *alloc-signal*
     *free-interrupt-context-index*
+    sb!unix::*allow-with-interrupts*
     sb!unix::*interrupts-enabled*
     sb!unix::*interrupt-pending*
     *gc-inhibit*
     #!-sb-thread
     *stepping*
 
+    ;; Dispatch tables for generic array access
+    sb!impl::*data-vector-reffers*
+    sb!impl::*data-vector-setters*
+    sb!impl::*data-vector-reffers/check-bounds*
+    sb!impl::*data-vector-setters/check-bounds*
+
     ;; hash table weaknesses
     :key
     :value
     :key-and-value
     :key-or-value))
+
+;;; Number of entries in the thread local storage. Limits the number
+;;; of symbols with thread local bindings.
+(def!constant tls-size 4096)